rust-clippy/tests/ui/bool_comparison.stderr

29 lines
935 B
Text
Raw Normal View History

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