From 9fcb9c6648331f372ee58ce4489d3d43a0723c59 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Tue, 12 Jul 2022 07:34:49 -0700 Subject: [PATCH] Update compiler/rustc_parse/src/parser/expr.rs Co-authored-by: Vadim Petrochenkov --- compiler/rustc_parse/src/parser/expr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs index f2765e4997ce4..52fefa2ebe590 100644 --- a/compiler/rustc_parse/src/parser/expr.rs +++ b/compiler/rustc_parse/src/parser/expr.rs @@ -3012,7 +3012,7 @@ impl<'a> Parser<'a> { } }; - let is_shorthand = parsed_field.as_ref().map_or(false, |f| f.ident.span == f.expr.span); + let is_shorthand = parsed_field.as_ref().map_or(false, |f| f.is_shorthand); // A shorthand field can be turned into a full field with `:`. // We should point this out. self.check_or_expected(!is_shorthand, TokenType::Token(token::Colon));