2022-05-05 14:12:52 +00:00
|
|
|
error: usage of `&String::new()` for a function expecting a `&str` argument
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_owned_empty_strings.rs:10:22
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
|
LL | ref_str_argument(&String::new());
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `""`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unnecessary-owned-empty-strings` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_owned_empty_strings)]`
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
error: usage of `&String::from("")` for a function expecting a `&str` argument
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_owned_empty_strings.rs:14:22
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
|
LL | ref_str_argument(&String::from(""));
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `""`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|