about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/path.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-05-12 15:44:24 +0200
committerRalf Jung <post@ralfj.de>2024-05-12 15:44:24 +0200
commit1e7fba9e06965b6db8a173cb497068401eea3bae (patch)
treef3ada808f56974250673700372722ba24596027f /compiler/rustc_parse/src/parser/path.rs
parent7d565dfa0fa40991df9e3567f991284b4912ab0b (diff)
parentf8433a82b4a4120e34de236a68d0cfeaea6e60c3 (diff)
Merge from rustc
Diffstat (limited to 'compiler/rustc_parse/src/parser/path.rs')
-rw-r--r--compiler/rustc_parse/src/parser/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/path.rs b/compiler/rustc_parse/src/parser/path.rs
index 3636a357978..c37d3f0441d 100644
--- a/compiler/rustc_parse/src/parser/path.rs
+++ b/compiler/rustc_parse/src/parser/path.rs
@@ -193,7 +193,7 @@ impl<'a> Parser<'a> {
         maybe_whole!(self, NtPath, |path| reject_generics_if_mod_style(self, path.into_inner()));
 
         if let token::Interpolated(nt) = &self.token.kind {
-            if let token::NtTy(ty) = &nt.0 {
+            if let token::NtTy(ty) = &**nt {
                 if let ast::TyKind::Path(None, path) = &ty.kind {
                     let path = path.clone();
                     self.bump();