19 lines
416 B
Plaintext
19 lines
416 B
Plaintext
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
|
|
|