mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Fix expect
This commit is contained in:
parent
baa43a86ab
commit
344cf1db5f
1 changed files with 4 additions and 2 deletions
|
@ -1188,8 +1188,10 @@ impl DefWithBody {
|
|||
}
|
||||
}
|
||||
for (expr, mismatch) in infer.expr_type_mismatches() {
|
||||
let expr =
|
||||
source_map.expr_syntax(expr).expect("break outside of loop in synthetic syntax");
|
||||
let expr = match source_map.expr_syntax(expr) {
|
||||
Ok(expr) => expr,
|
||||
Err(SyntheticSyntax) => continue,
|
||||
};
|
||||
acc.push(
|
||||
TypeMismatch {
|
||||
expr,
|
||||
|
|
Loading…
Reference in a new issue