mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
26 lines
885 B
Text
26 lines
885 B
Text
error: equality checks against true are unnecessary
|
|
--> $DIR/bool_comparison.rs:7:8
|
|
|
|
|
7 | if x == true { "yes" } else { "no" };
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
|
|
|
|
= note: `-D bool-comparison` implied by `-D warnings`
|
|
|
|
error: equality checks against false can be replaced by a negation
|
|
--> $DIR/bool_comparison.rs:8:8
|
|
|
|
|
8 | if x == false { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|
|
error: equality checks against true are unnecessary
|
|
--> $DIR/bool_comparison.rs:9:8
|
|
|
|
|
9 | 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:10:8
|
|
|
|
|
10 | if false == x { "yes" } else { "no" };
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
|
|