rust/tests/ui/block_in_if_condition_closure.stderr

25 lines
824 B
Text
Raw Normal View History

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:18:17
|
LL | |x| {
| _________________^
LL | | let target = 3;
LL | | x == target
LL | | },
| |_____________^
|
= note: `-D clippy::block-in-if-condition` 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:27:13
|
LL | |x| {
| _____________^
LL | | let target = 3;
LL | | x == target
LL | | },
| |_________^
error: aborting due to 2 previous errors