rust/tests/ui/block_in_if_condition_closure.stderr
2020-02-06 19:13:46 +01:00

24 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