mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
9 lines
233 B
Rust
9 lines
233 B
Rust
#![warn(clippy::str_to_string)]
|
|
|
|
fn main() {
|
|
let hello = "hello world".to_owned();
|
|
//~^ ERROR: `to_string()` called on a `&str`
|
|
let msg = &hello[..];
|
|
msg.to_owned();
|
|
//~^ ERROR: `to_string()` called on a `&str`
|
|
}
|