Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
src
/
tools
/
clippy
/
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
}