rust-clippy/tests/ui/println_empty_string.stderr
2018-01-17 14:44:40 +01:00

10 lines
253 B
Text

error: using `println!("")`
--> $DIR/println_empty_string.rs:3:5
|
3 | println!("");
| ^^^^^^^^^^^^^ help: replace it with: `println!()`
|
= note: `-D print-with-newline` implied by `-D warnings`
error: aborting due to previous error