2017-02-07 20:05:30 +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'
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/block_in_if_condition.rs:40:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
40 | if {
|
2017-04-23 13:25:22 +00:00
|
|
|
| ________^
|
2018-10-06 16:18:06 +00:00
|
|
|
41 | | let x = 3;
|
|
|
|
42 | | x == 3
|
|
|
|
43 | | } {
|
2017-04-23 13:25:22 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::block-in-if-condition-stmt` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
= help: try
|
2017-02-08 13:58:07 +00:00
|
|
|
let res = {
|
2017-02-07 20:05:30 +00:00
|
|
|
let x = 3;
|
|
|
|
x == 3
|
|
|
|
};
|
|
|
|
if res {
|
|
|
|
6
|
|
|
|
} ...
|
|
|
|
|
|
|
|
error: omit braces around single expression condition
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/block_in_if_condition.rs:51:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
51 | if { true } {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::block-in-if-condition-expr` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
= help: try
|
2017-02-08 13:58:07 +00:00
|
|
|
if true {
|
2017-02-07 20:05:30 +00:00
|
|
|
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'
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/block_in_if_condition.rs:68:49
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
68 | if v == 3 && sky == "blue" && predicate(|x| { let target = 3; x == target }, v) {
|
2017-02-07 20:05:30 +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'
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/block_in_if_condition.rs:71:22
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
71 | if predicate(|x| { let target = 3; x == target }, v) {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: this boolean expression can be simplified
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/block_in_if_condition.rs:77:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
77 | if true && x == 3 {
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `x == 3`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::nonminimal-bool` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|