mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
Bugfix + add test.
This commit is contained in:
parent
8e9d0c277c
commit
ed202b6055
@ -218,13 +218,8 @@ impl<'a, 'tcx, 'v> SuggestContext<'a, 'tcx, 'v> {
|
||||
self.output.push_str(&str)
|
||||
} else {
|
||||
self.output.push('!');
|
||||
if let ExprBinary(..) = terminal.node {
|
||||
self.output.push('(');
|
||||
}
|
||||
self.recurse(inner);
|
||||
if let ExprBinary(..) = terminal.node {
|
||||
self.output.push(';');
|
||||
}
|
||||
let snip = self.snip(terminal);
|
||||
self.output.push_str(&snip);
|
||||
}
|
||||
},
|
||||
True | False | Not(_) => {
|
||||
|
@ -53,4 +53,5 @@ fn methods_with_negation() {
|
||||
let _ = !b.is_ok();
|
||||
let c = false;
|
||||
let _ = !(a.is_some() && !c);
|
||||
let _ = !(!c ^ c) || !a.is_some();
|
||||
}
|
||||
|
@ -160,3 +160,9 @@ error: this boolean expression can be simplified
|
||||
55 | let _ = !(a.is_some() && !c);
|
||||
| ^^^^^^^^^^^^^^^^^^^^ help: try: `c || a.is_none()`
|
||||
|
||||
error: this boolean expression can be simplified
|
||||
--> $DIR/booleans.rs:56:13
|
||||
|
|
||||
56 | let _ = !(!c ^ c) || !a.is_some();
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `!(!c ^ c) || a.is_none()`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user