2017-02-07 21:05:30 +01:00
|
|
|
error: equality checks against true are unnecessary
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/bool_comparison.rs:7:8
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
|
7 | if x == true { "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
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
= note: `-D 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
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/bool_comparison.rs:8:8
|
2017-05-10 16:48:58 +02:00
|
|
|
|
|
|
|
|
8 | if x == false { "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
|
|
|
|
|
|
|
error: equality checks against true are unnecessary
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/bool_comparison.rs:9:8
|
2017-05-10 16:48:58 +02:00
|
|
|
|
|
|
|
|
9 | if true == 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
|
|
|
|
|
|
|
error: equality checks against false can be replaced by a negation
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/bool_comparison.rs:10:8
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-10 16:48:58 +02:00
|
|
|
10 | 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
|
|
|
|