2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-09 01:37:16 +00:00
rust-clippy/tests/ui/str_to_string.rs

9 lines
235 B
Rust

#![warn(clippy::str_to_string)]
fn main() {
let hello = "hello world".to_string();
//~^ ERROR: `to_string()` called on a `&str`
let msg = &hello[..];
msg.to_string();
//~^ ERROR: `to_string()` called on a `&str`
}