summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_owned_empty_strings.stderr
blob: 46bc4597b335f0bfb7be4ce8053f46b3735e95b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
  --> $DIR/unnecessary_owned_empty_strings.rs:15:22
   |
LL |     ref_str_argument(&String::from(""));
   |                      ^^^^^^^^^^^^^^^^^ help: try: `""`

error: aborting due to 2 previous errors