summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/writeln_empty_string.stderr
blob: 25e69ec48e7e28cb413a8f60a1b3b5969aaa3762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: empty string literal in `writeln!`
  --> $DIR/writeln_empty_string.rs:11: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:14:5
   |
LL |     writeln!(suggestion, "");
   |     ^^^^^^^^^^^^^^^^^^^----^
   |                        |
   |                        help: remove the empty string

error: aborting due to 2 previous errors