10 lines
233 B
Rust
10 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`
|
||
|
}
|