about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/str_to_string.fixed
blob: 2941c4dbd33d9915e40f8f9f3efb1a53e41e7b9c (plain)
1
2
3
4
5
6
7
8
9
10
#![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
}