]> git.lizzy.rs Git - rust.git/blob - tests/ui/println_empty_string.stderr
Auto merge of #3529 - matthiaskrgr:rustfmt_tests, r=phansch
[rust.git] / tests / ui / println_empty_string.stderr
1 error: using `println!("")`
2   --> $DIR/println_empty_string.rs:12:5
3    |
4 12 |     println!("");
5    |     ^^^^^^^^^^^^ help: replace it with: `println!()`
6    |
7    = note: `-D clippy::println-empty-string` implied by `-D warnings`
8
9 error: using `println!("")`
10   --> $DIR/println_empty_string.rs:15:14
11    |
12 15 |         _ => println!(""),
13    |              ^^^^^^^^^^^^ help: replace it with: `println!()`
14
15 error: aborting due to 2 previous errors
16