Merge pull request #3473 from lucasloisp/additional-bool-comparisons
Adds inequality cases to bool comparison (#3438)
This commit is contained in:
commit
68bb900eba
3 changed files with 95 additions and 65 deletions
|
|
@ -18,4 +18,8 @@ fn main() {
|
|||
if x == false { "yes" } else { "no" };
|
||||
if true == x { "yes" } else { "no" };
|
||||
if false == x { "yes" } else { "no" };
|
||||
if x != true { "yes" } else { "no" };
|
||||
if x != false { "yes" } else { "no" };
|
||||
if true != x { "yes" } else { "no" };
|
||||
if false != x { "yes" } else { "no" };
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,5 +24,29 @@ error: equality checks against false can be replaced by a negation
|
|||
20 | if false == x { "yes" } else { "no" };
|
||||
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
|
||||
|
||||
error: aborting due to 4 previous errors
|
||||
error: inequality checks against true can be replaced by a negation
|
||||
--> $DIR/bool_comparison.rs:21:8
|
||||
|
|
||||
21 | if x != true { "yes" } else { "no" };
|
||||
| ^^^^^^^^^ help: try simplifying it as shown: `!x`
|
||||
|
||||
error: inequality checks against false are unnecessary
|
||||
--> $DIR/bool_comparison.rs:22:8
|
||||
|
|
||||
22 | if x != false { "yes" } else { "no" };
|
||||
| ^^^^^^^^^^ help: try simplifying it as shown: `x`
|
||||
|
||||
error: inequality checks against true can be replaced by a negation
|
||||
--> $DIR/bool_comparison.rs:23:8
|
||||
|
|
||||
23 | if true != x { "yes" } else { "no" };
|
||||
| ^^^^^^^^^ help: try simplifying it as shown: `!x`
|
||||
|
||||
error: inequality checks against false are unnecessary
|
||||
--> $DIR/bool_comparison.rs:24:8
|
||||
|
|
||||
24 | if false != x { "yes" } else { "no" };
|
||||
| ^^^^^^^^^^ help: try simplifying it as shown: `x`
|
||||
|
||||
error: aborting due to 8 previous errors
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue