2017-02-07 20:05:30 +00:00
|
|
|
error: equality checks against true are unnecessary
|
2017-05-17 15:51:35 +00:00
|
|
|
--> bool_comparison.rs:7:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
7 | if x == true { "yes" } else { "no" };
|
2017-05-03 10:51:47 +00:00
|
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D bool-comparison` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: equality checks against false can be replaced by a negation
|
2017-05-17 15:51:35 +00:00
|
|
|
--> bool_comparison.rs:8:8
|
2017-05-10 14:48:58 +00:00
|
|
|
|
|
|
|
|
8 | if x == false { "yes" } else { "no" };
|
|
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D bool-comparison` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: equality checks against true are unnecessary
|
2017-05-17 15:51:35 +00:00
|
|
|
--> bool_comparison.rs:9:8
|
2017-05-10 14:48:58 +00:00
|
|
|
|
|
|
|
|
9 | if true == x { "yes" } else { "no" };
|
|
|
|
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D bool-comparison` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: equality checks against false can be replaced by a negation
|
2017-05-17 15:51:35 +00:00
|
|
|
--> bool_comparison.rs:10:8
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-10 14:48:58 +00:00
|
|
|
10 | if false == x { "yes" } else { "no" };
|
2017-05-03 10:51:47 +00:00
|
|
|
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
|
= note: `-D bool-comparison` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-26 07:21:54 +00:00
|
|
|
error: aborting due to previous error(s)
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|