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-07-02 12:35:19 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions_closure.rs:23:17
|
2020-02-04 15:08:39 +00:00
|
|
|
|
|
|
|
|
LL | |x| {
|
|
|
|
| _________________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2020-02-04 15:08:39 +00:00
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
|
|
|
| |_____________^
|
|
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
= note: `-D clippy::blocks-in-if-conditions` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::blocks_in_if_conditions)]`
|
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-08-24 19:32:12 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions_closure.rs:34:13
|
2020-02-04 15:08:39 +00:00
|
|
|
|
|
|
|
|
LL | |x| {
|
|
|
|
| _____________^
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-02-04 15:08:39 +00:00
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|