mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
8 lines
218 B
Rust
8 lines
218 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();
|
|
//~^ ERROR: `to_string()` called on a `String`
|
|
}
|