2024-05-30 17:02:23 +00:00
|
|
|
#![warn(clippy::str_to_string)]
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let hello = "hello world".to_owned();
|
2025-02-11 17:57:08 +01:00
|
|
|
//~^ str_to_string
|
|
|
|
|
|
2024-05-30 17:02:23 +00:00
|
|
|
let msg = &hello[..];
|
|
|
|
|
msg.to_owned();
|
2025-02-11 17:57:08 +01:00
|
|
|
//~^ str_to_string
|
2024-05-30 17:02:23 +00:00
|
|
|
}
|