blob: 007685b601797d80e020e6d78494402ceb801a57 (
plain)
1
2
3
4
5
6
7
8
|
#![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`
}
|