about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/ty.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2022-08-12 12:20:10 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2022-08-17 08:10:56 +1000
commiteafd0dfd05cca581d66d83aab9549612ba2ed543 (patch)
treeac234c9169db2ad104c0cc3727d19d017f792411 /compiler/rustc_parse/src/parser/ty.rs
parent5746c752f4e3f294cd252f7dd611a1908b12dd8e (diff)
downloadrust-eafd0dfd05cca581d66d83aab9549612ba2ed543.tar.gz
rust-eafd0dfd05cca581d66d83aab9549612ba2ed543.zip
Box the `MacCall` in various types.
Diffstat (limited to 'compiler/rustc_parse/src/parser/ty.rs')
-rw-r--r--compiler/rustc_parse/src/parser/ty.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/ty.rs b/compiler/rustc_parse/src/parser/ty.rs
index 31b40a83e60..76b710095d7 100644
--- a/compiler/rustc_parse/src/parser/ty.rs
+++ b/compiler/rustc_parse/src/parser/ty.rs
@@ -598,11 +598,11 @@ impl<'a> Parser<'a> {
         let path = self.parse_path_inner(PathStyle::Type, ty_generics)?;
         if self.eat(&token::Not) {
             // Macro invocation in type position
-            Ok(TyKind::MacCall(MacCall {
+            Ok(TyKind::MacCall(P(MacCall {
                 path,
                 args: self.parse_mac_args()?,
                 prior_type_ascription: self.last_type_ascription,
-            }))
+            })))
         } else if allow_plus == AllowPlus::Yes && self.check_plus() {
             // `Trait1 + Trait2 + 'a`
             self.parse_remaining_bounds_path(Vec::new(), path, lo, true)