Sign in
rust
/
rust-clippy
/
9eb85122558fd7c3a8909939f9cbe4d0f15d73f3
/
.
/
tests
/
ui
/
str_to_string.rs
blob: 4c4d2bb18062502040ec947c95f0169af2c4642d [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
str_to_string
)]
fn
main
()
{
let
hello
=
"hello world"
.
to_string
();
//~^ str_to_string
let
msg
=
&
hello
[..];
msg
.
to_string
();
//~^ str_to_string
}