mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
3930148059
The lint now checks cases like `y != true`
52 lines
1.8 KiB
Text
52 lines
1.8 KiB
Text
error: equality checks against true are unnecessary
|
|
--> $DIR/bool_comparison.rs:17:8
|
|
|
|
|
17 | if x == true { "yes" } else { "no" };
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
|
|
|
|
= note: `-D clippy::bool-comparison` implied by `-D warnings`
|
|
|
|
error: equality checks against false can be replaced by a negation
|
|
--> $DIR/bool_comparison.rs:18:8
|
|
|
|
|
18 | if x == false { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|
|
error: equality checks against true are unnecessary
|
|
--> $DIR/bool_comparison.rs:19:8
|
|
|
|
|
19 | if true == x { "yes" } else { "no" };
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
|
|
|
error: equality checks against false can be replaced by a negation
|
|
--> $DIR/bool_comparison.rs:20:8
|
|
|
|
|
20 | if false == x { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|
|
error: inequality checks against true can be replaced by a negation
|
|
--> $DIR/bool_comparison.rs:21:8
|
|
|
|
|
21 | if x != true { "yes" } else { "no" };
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|
|
error: inequality checks against false are unnecessary
|
|
--> $DIR/bool_comparison.rs:22:8
|
|
|
|
|
22 | if x != false { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `x`
|
|
|
|
error: inequality checks against true can be replaced by a negation
|
|
--> $DIR/bool_comparison.rs:23:8
|
|
|
|
|
23 | if true != x { "yes" } else { "no" };
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|
|
error: inequality checks against false are unnecessary
|
|
--> $DIR/bool_comparison.rs:24:8
|
|
|
|
|
24 | if false != x { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `x`
|
|
|
|
error: aborting due to 8 previous errors
|
|
|