Skip to content

Commit 89284af

Browse files
committed
inlined kind
1 parent 3aa0411 commit 89284af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compiler/rustc_parse/src/parser/diagnostics.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1717,8 +1717,7 @@ impl<'a> Parser<'a> {
17171717
self.recover_await_prefix(await_sp)?
17181718
};
17191719
let sp = self.error_on_incorrect_await(lo, hi, &expr, is_question);
1720-
let kind = ExprKind::Err;
1721-
let expr = self.mk_expr(lo.to(sp), kind);
1720+
let expr = self.mk_expr(lo.to(sp), ExprKind::Err);
17221721
self.maybe_recover_from_bad_qpath(expr)
17231722
}
17241723

0 commit comments

Comments
 (0)