summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/writeln_empty_string.stderr
blob: ac65aadfc0e8926f4cf5d04dcde1f0906d5672e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: using `writeln!(v, "")`
  --> $DIR/writeln_empty_string.rs:11:5
   |
LL |     writeln!(v, "");
   |     ^^^^^^^^^^^^^^^ help: replace it with: `writeln!(v)`
   |
   = note: `-D clippy::writeln-empty-string` implied by `-D warnings`

error: using `writeln!(suggestion, "")`
  --> $DIR/writeln_empty_string.rs:14:5
   |
LL |     writeln!(suggestion, "");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `writeln!(suggestion)`

error: aborting due to 2 previous errors