mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
63 lines
2 KiB
Text
63 lines
2 KiB
Text
error: this boolean expression contains a logic bug
|
|
--> $DIR/logic_bug.rs:10:13
|
|
|
|
|
LL | let _ = a && b || a;
|
|
| ^^^^^^^^^^^ help: it would look like the following: `a`
|
|
|
|
|
= note: `-D clippy::logic-bug` implied by `-D warnings`
|
|
help: this expression can be optimized out by applying boolean operations to the outer expression
|
|
--> $DIR/logic_bug.rs:10:18
|
|
|
|
|
LL | let _ = a && b || a;
|
|
| ^
|
|
|
|
error: this boolean expression contains a logic bug
|
|
--> $DIR/logic_bug.rs:12:13
|
|
|
|
|
LL | let _ = false && a;
|
|
| ^^^^^^^^^^ help: it would look like the following: `false`
|
|
|
|
|
help: this expression can be optimized out by applying boolean operations to the outer expression
|
|
--> $DIR/logic_bug.rs:12:22
|
|
|
|
|
LL | let _ = false && a;
|
|
| ^
|
|
|
|
error: this boolean expression contains a logic bug
|
|
--> $DIR/logic_bug.rs:22:13
|
|
|
|
|
LL | let _ = a == b && a != b;
|
|
| ^^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
|
|
|
|
help: this expression can be optimized out by applying boolean operations to the outer expression
|
|
--> $DIR/logic_bug.rs:22:13
|
|
|
|
|
LL | let _ = a == b && a != b;
|
|
| ^^^^^^
|
|
|
|
error: this boolean expression contains a logic bug
|
|
--> $DIR/logic_bug.rs:23:13
|
|
|
|
|
LL | let _ = a < b && a >= b;
|
|
| ^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
|
|
|
|
help: this expression can be optimized out by applying boolean operations to the outer expression
|
|
--> $DIR/logic_bug.rs:23:13
|
|
|
|
|
LL | let _ = a < b && a >= b;
|
|
| ^^^^^
|
|
|
|
error: this boolean expression contains a logic bug
|
|
--> $DIR/logic_bug.rs:24:13
|
|
|
|
|
LL | let _ = a > b && a <= b;
|
|
| ^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
|
|
|
|
help: this expression can be optimized out by applying boolean operations to the outer expression
|
|
--> $DIR/logic_bug.rs:24:13
|
|
|
|
|
LL | let _ = a > b && a <= b;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|