rust/tests/ui/str_to_string.stderr

18 lines
562 B
Plaintext
Raw Normal View History

error: `to_string()` called on a `&str`
2024-02-17 06:16:29 -06:00
--> tests/ui/str_to_string.rs:4:17
|
LL | let hello = "hello world".to_string();
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"hello world".to_owned()`
|
2022-09-22 11:04:22 -05:00
= 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`
2024-02-17 06:16:29 -06:00
--> tests/ui/str_to_string.rs:7:5
|
LL | msg.to_string();
| ^^^^^^^^^^^^^^^ help: try: `msg.to_owned()`
error: aborting due to 2 previous errors