2017-02-07 21:05:30 +01:00
|
|
|
error: equality checks against true are unnecessary
|
2018-10-06 09:18:06 -07:00
|
|
|
--> $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`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: equality checks against false can be replaced by a negation
|
2018-10-06 09:18:06 -07:00
|
|
|
--> $DIR/bool_comparison.rs:18:8
|
|
|
|
|
|
|
|
|
18 | if x == false { "yes" } else { "no" };
|
|
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: equality checks against true are unnecessary
|
2018-10-06 09:18:06 -07:00
|
|
|
--> $DIR/bool_comparison.rs:19:8
|
|
|
|
|
|
|
|
|
19 | if true == x { "yes" } else { "no" };
|
|
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: equality checks against false can be replaced by a negation
|
2018-10-06 09:18:06 -07:00
|
|
|
--> $DIR/bool_comparison.rs:20:8
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-10-06 09:18:06 -07:00
|
|
|
20 | if false == x { "yes" } else { "no" };
|
2017-07-24 16:28:41 +02:00
|
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|