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

fn main() {
    let mut message = String::from("Hello");
    let mut v = message.to_string();
}