]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui-toml/semicolon_block/semicolon_inside_block.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui-toml / semicolon_block / semicolon_inside_block.stderr
CommitLineData
49aad941 1error: consider moving the `;` inside the block for consistent formatting
781aab86 2 --> $DIR/semicolon_inside_block.rs:47:5
49aad941
FG
3 |
4LL | / {
5LL | | unit_fn_block();
6LL | | unit_fn_block()
7LL | | };
8 | |______^
9 |
10 = note: `-D clippy::semicolon-inside-block` implied by `-D warnings`
781aab86 11 = help: to override `-D warnings` add `#[allow(clippy::semicolon_inside_block)]`
49aad941
FG
12help: put the `;` here
13 |
14LL ~ unit_fn_block();
15LL ~ }
16 |
17
18error: aborting due to previous error
19