2023-05-05 15:45:49 +00:00
|
|
|
error: consider moving the `;` inside the block for consistent formatting
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/semicolon_inside_block.rs:47:5
|
2023-05-05 15:45:49 +00:00
|
|
|
|
|
|
|
|
LL | / {
|
|
|
|
LL | | unit_fn_block();
|
|
|
|
LL | | unit_fn_block()
|
|
|
|
LL | | };
|
|
|
|
| |______^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::semicolon-inside-block` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::semicolon_inside_block)]`
|
2023-05-05 15:45:49 +00:00
|
|
|
help: put the `;` here
|
|
|
|
|
|
|
|
|
LL ~ unit_fn_block();
|
|
|
|
LL ~ }
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|