We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03bd2f6 commit c921aaeCopy full SHA for c921aae
src/libsyntax/parse/parser.rs
@@ -2764,6 +2764,7 @@ impl<'a> Parser<'a> {
2764
self.expect(&token::OpenDelim(token::Paren))?;
2765
let expr = self.parse_expr()?;
2766
self.expect(&token::CloseDelim(token::Paren))?;
2767
+ hi = self.prev_span;
2768
ex = ExprKind::Await(ast::AwaitOrigin::MacroLike, expr);
2769
} else if self.token.is_path_start() {
2770
let path = self.parse_path(PathStyle::Expr)?;
0 commit comments