2022-05-05 09:12:52 -05:00
|
|
|
error: usage of `&String::new()` for a function expecting a `&str` argument
|
|
|
|
--> $DIR/unnecessary_owned_empty_strings.rs:12:22
|
|
|
|
|
|
|
|
|
LL | ref_str_argument(&String::new());
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `""`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unnecessary-owned-empty-strings` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: usage of `&String::from("")` for a function expecting a `&str` argument
|
2022-08-31 08:24:45 -05:00
|
|
|
--> $DIR/unnecessary_owned_empty_strings.rs:16:22
|
2022-05-05 09:12:52 -05:00
|
|
|
|
|
|
|
|
LL | ref_str_argument(&String::from(""));
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `""`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|