2020-01-06 06:36:33 +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`
|
2020-05-15 16:20:07 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions.rs:26:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-02-04 15:08:39 +00:00
|
|
|
LL | / if {
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | let x = 3;
|
|
|
|
LL | | x == 3
|
|
|
|
LL | | } {
|
2017-04-23 13:25:22 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-05-15 16:20:07 +00:00
|
|
|
= note: `-D clippy::blocks-in-if-conditions` implied by `-D warnings`
|
2020-02-04 15:08:39 +00:00
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | let res = {
|
|
|
|
LL | let x = 3;
|
|
|
|
LL | x == 3
|
|
|
|
LL | }; if res {
|
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: omit braces around single expression condition
|
2020-05-15 16:20:07 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions.rs:37:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if { true } {
|
2020-02-04 15:08:39 +00:00
|
|
|
| ^^^^^^^^ help: try: `true`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: this boolean expression can be simplified
|
2020-05-15 16:20:07 +00:00
|
|
|
--> $DIR/blocks_in_if_conditions.rs:46:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
|
|
|
2020-02-04 15:08:39 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|