mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
25 lines
829 B
Text
25 lines
829 B
Text
|
error: in an `if` condition, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`
|
||
|
--> $DIR/block_in_if_condition_closure.rs:19:17
|
||
|
|
|
||
|
LL | |x| {
|
||
|
| _________________^
|
||
|
LL | | let target = 3;
|
||
|
LL | | x == target
|
||
|
LL | | },
|
||
|
| |_____________^
|
||
|
|
|
||
|
= note: `-D clippy::block-in-if-condition-stmt` implied by `-D warnings`
|
||
|
|
||
|
error: in an `if` condition, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`
|
||
|
--> $DIR/block_in_if_condition_closure.rs:28:13
|
||
|
|
|
||
|
LL | |x| {
|
||
|
| _____________^
|
||
|
LL | | let target = 3;
|
||
|
LL | | x == target
|
||
|
LL | | },
|
||
|
| |_________^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|