summaryrefslogtreecommitdiff
path: root/src/tools/clippy/tests/ui-toml/semicolon_block/semicolon_inside_block.stderr
blob: 2569dc4b4e4530f1ab37a7fc21284d761f6c1b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: consider moving the `;` inside the block for consistent formatting
  --> $DIR/semicolon_inside_block.rs:48:5
   |
LL | /     {
LL | |         unit_fn_block();
LL | |         unit_fn_block()
LL | |     };
   | |______^
   |
   = note: `-D clippy::semicolon-inside-block` implied by `-D warnings`
help: put the `;` here
   |
LL ~         unit_fn_block();
LL ~     }
   |

error: aborting due to previous error