Files
rust/tests/ui/str_to_string.rs
2025-02-15 13:38:42 +01:00

11 lines
184 B
Rust

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