rust-clippy/tests/ui/writeln_empty_string.stderr
2023-08-11 14:02:28 +00:00

20 lines
570 B
Text

error: empty string literal in `writeln!`
--> $DIR/writeln_empty_string.rs:9:5
|
LL | writeln!(v, "");
| ^^^^^^^^^^----^
| |
| help: remove the empty string
|
= note: `-D clippy::writeln-empty-string` implied by `-D warnings`
error: empty string literal in `writeln!`
--> $DIR/writeln_empty_string.rs:12:5
|
LL | writeln!(suggestion, "");
| ^^^^^^^^^^^^^^^^^^^----^
| |
| help: remove the empty string
error: aborting due to 2 previous errors