blob: 52e40b45a8bdd7153d5816bff305d16fdeca346c (
plain)
1
2
3
4
5
6
7
8
9
|
#![warn(clippy::str_to_string)]
fn main() {
let hello = "hello world".to_owned();
//~^ ERROR: `to_string()` called on a `&str`
let msg = &hello[..];
msg.to_owned();
//~^ ERROR: `to_string()` called on a `&str`
}
|