Sign in
rust
/
rust-clippy
/
ac8f50473caf0b43c05e07028cae7f13d074efb5
/
.
/
tests
/
ui
/
str_to_string.fixed
blob: 2941c4dbd33d9915e40f8f9f3efb1a53e41e7b9c [
file
] [
log
] [
blame
]
#![warn(clippy::str_to_string)]
fn main
()
{
let
hello
=
"hello world"
.
to_owned
();
//~^ str_to_string
let
msg
=
&
hello
[..];
msg
.
to_owned
();
//~^ str_to_string
}