mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
21 lines
660 B
Text
21 lines
660 B
Text
error: empty string literal in `writeln!`
|
|
--> tests/ui/writeln_empty_string.rs:9:5
|
|
|
|
|
LL | writeln!(v, "");
|
|
| ^^^^^^^^^^----^
|
|
| |
|
|
| help: remove the empty string
|
|
|
|
|
= note: `-D clippy::writeln-empty-string` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::writeln_empty_string)]`
|
|
|
|
error: empty string literal in `writeln!`
|
|
--> tests/ui/writeln_empty_string.rs:12:5
|
|
|
|
|
LL | writeln!(suggestion, "");
|
|
| ^^^^^^^^^^^^^^^^^^^----^
|
|
| |
|
|
| help: remove the empty string
|
|
|
|
error: aborting due to 2 previous errors
|
|
|