1error: using `println!("")`
2  --> $DIR/println_empty_string.rs:6:5
3   |
4LL |     println!("");
5   |     ^^^^^^^^^^^^ help: replace it with: `println!()`
6   |
7   = note: `-D clippy::println-empty-string` implied by `-D warnings`
8
9error: using `println!("")`
10  --> $DIR/println_empty_string.rs:9:14
11   |
12LL |         _ => println!(""),
13   |              ^^^^^^^^^^^^ help: replace it with: `println!()`
14
15error: using `eprintln!("")`
16  --> $DIR/println_empty_string.rs:13:5
17   |
18LL |     eprintln!("");
19   |     ^^^^^^^^^^^^^ help: replace it with: `eprintln!()`
20
21error: using `eprintln!("")`
22  --> $DIR/println_empty_string.rs:16:14
23   |
24LL |         _ => eprintln!(""),
25   |              ^^^^^^^^^^^^^ help: replace it with: `eprintln!()`
26
27error: aborting due to 4 previous errors
28
29