rust-clippy/tests/ui/string_to_string.stderr
2022-10-01 10:03:06 +00:00

11 lines
314 B
Text

error: `to_string()` called on a `String`
--> $DIR/string_to_string.rs:6:17
|
LL | let mut v = message.to_string();
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using `.clone()`
= note: `-D clippy::string-to-string` implied by `-D warnings`
error: aborting due to previous error