2020-01-06 00:36:33 -06: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`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/block_in_if_condition.rs:26:8
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if {
|
2017-04-23 08:25:22 -05:00
|
|
|
| ________^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | let x = 3;
|
|
|
|
LL | | x == 3
|
|
|
|
LL | | } {
|
2017-04-23 08:25:22 -05:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::block-in-if-condition-stmt` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
= help: try
|
2017-02-08 07:58:07 -06:00
|
|
|
let res = {
|
2017-02-07 14:05:30 -06:00
|
|
|
let x = 3;
|
|
|
|
x == 3
|
|
|
|
};
|
|
|
|
if res {
|
|
|
|
6
|
|
|
|
} ...
|
|
|
|
|
|
|
|
error: omit braces around single expression condition
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/block_in_if_condition.rs:37:8
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if { true } {
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::block-in-if-condition-expr` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
= help: try
|
2017-02-08 07:58:07 -06:00
|
|
|
if true {
|
2017-02-07 14:05:30 -06:00
|
|
|
6
|
|
|
|
} ...
|
|
|
|
|
2020-01-06 00:36:33 -06: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`
|
2019-03-10 16:07:10 -05:00
|
|
|
--> $DIR/block_in_if_condition.rs:58:17
|
2018-12-09 23:27:19 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | |x| {
|
2018-12-09 23:27:19 -06:00
|
|
|
| _________________^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____________^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-01-06 00:36:33 -06: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`
|
2019-03-10 16:07:10 -05:00
|
|
|
--> $DIR/block_in_if_condition.rs:67:13
|
2018-12-09 23:27:19 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | |x| {
|
2018-12-09 23:27:19 -06:00
|
|
|
| _____________^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | let target = 3;
|
|
|
|
LL | | x == target
|
|
|
|
LL | | },
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_________^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: this boolean expression can be simplified
|
2019-03-10 16:07:10 -05:00
|
|
|
--> $DIR/block_in_if_condition.rs:77:8
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if true && x == 3 {
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `x == 3`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::nonminimal-bool` implied by `-D warnings`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|