mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-02 00:09:08 +00:00
7 lines
167 B
Rust
7 lines
167 B
Rust
#![warn(clippy::string_to_string)]
|
|
#![allow(clippy::redundant_clone)]
|
|
|
|
fn main() {
|
|
let mut message = String::from("Hello");
|
|
let mut v = message.to_string();
|
|
}
|