2020-02-04 15:08:39 +00:00
|
|
|
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`
|
2023-05-31 17:47:10 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions_closure.rs:23:17
|
2020-02-04 15:08:39 +00:00
|
|
|
|
|
|
|
|
LL | |x| {
|
|
|
|
| _________________^
|
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
|
|
|
| |_____________^
|
|
|
|
|
|
2020-05-15 16:20:07 +00:00
|
|
|
= note: `-D clippy::blocks-in-if-conditions` implied by `-D warnings`
|
2020-02-04 15:08:39 +00:00
|
|
|
|
|
|
|
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`
|
2023-05-31 17:47:10 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions_closure.rs:32:13
|
2020-02-04 15:08:39 +00:00
|
|
|
|
|
|
|
|
LL | |x| {
|
|
|
|
| _____________^
|
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|