mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
20 lines
581 B
Text
20 lines
581 B
Text
error: `to_string()` called on a `&str`
|
|
--> tests/ui/str_to_string.rs:4:17
|
|
|
|
|
LL | let hello = "hello world".to_string();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using `.to_owned()`
|
|
= note: `-D clippy::str-to-string` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::str_to_string)]`
|
|
|
|
error: `to_string()` called on a `&str`
|
|
--> tests/ui/str_to_string.rs:7:5
|
|
|
|
|
LL | msg.to_string();
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using `.to_owned()`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|