mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
16 lines
434 B
Text
16 lines
434 B
Text
error: using `println!("")`
|
|
--> $DIR/println_empty_string.rs:3:5
|
|
|
|
|
3 | println!("");
|
|
| ^^^^^^^^^^^^ help: replace it with: `println!()`
|
|
|
|
|
= note: `-D clippy::println-empty-string` implied by `-D warnings`
|
|
|
|
error: using `println!("")`
|
|
--> $DIR/println_empty_string.rs:6:14
|
|
|
|
|
6 | _ => println!(""),
|
|
| ^^^^^^^^^^^^ help: replace it with: `println!()`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|