mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +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();
|
|
}
|