mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
82d91c5fcb
Fixes #2319
8 lines
214 B
Text
8 lines
214 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`
|
|
|