summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/str_to_string.rs
blob: 08f734025181c612ee3c7139d94edb363e574852 (plain)
1
2
3
4
5
6
7
#![warn(clippy::str_to_string)]

fn main() {
    let hello = "hello world".to_string();
    let msg = &hello[..];
    msg.to_string();
}