blob: 2941c4dbd33d9915e40f8f9f3efb1a53e41e7b9c [file] [log] [blame]
#![warn(clippy::str_to_string)]
fn main() {
let hello = "hello world".to_owned();
//~^ str_to_string
let msg = &hello[..];
msg.to_owned();
//~^ str_to_string
}