rust/tests/ui/blocks_in_if_conditions.stderr

35 lines
918 B
Text
Raw Normal View History

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