mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
cc923b5d0e
Cleaning the empty lines for clarity.
66 lines
2 KiB
Text
66 lines
2 KiB
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.rs:30:8
|
|
|
|
|
30 | if {
|
|
| ________^
|
|
31 | | let x = 3;
|
|
32 | | x == 3
|
|
33 | | } {
|
|
| |_____^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/block_in_if_condition.rs:5:9
|
|
|
|
|
5 | #![deny(block_in_if_condition_stmt)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= help: try
|
|
let res = {
|
|
let x = 3;
|
|
x == 3
|
|
};
|
|
if res {
|
|
6
|
|
} ...
|
|
|
|
error: omit braces around single expression condition
|
|
--> $DIR/block_in_if_condition.rs:41:8
|
|
|
|
|
41 | if { true } {
|
|
| ^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/block_in_if_condition.rs:4:9
|
|
|
|
|
4 | #![deny(block_in_if_condition_expr)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= help: try
|
|
if true {
|
|
6
|
|
} ...
|
|
|
|
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.rs:58:49
|
|
|
|
|
58 | if v == 3 && sky == "blue" && predicate(|x| { let target = 3; x == target }, v) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
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.rs:61:22
|
|
|
|
|
61 | if predicate(|x| { let target = 3; x == target }, v) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
warning: this boolean expression can be simplified
|
|
--> $DIR/block_in_if_condition.rs:67:8
|
|
|
|
|
67 | if true && x == 3 {
|
|
| ^^^^^^^^^^^^^^ help: try `x == 3`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/block_in_if_condition.rs:7:9
|
|
|
|
|
7 | #![warn(nonminimal_bool)]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|