about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/path.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-05-14 01:10:38 +0000
committerbors <bors@rust-lang.org>2024-05-14 01:10:38 +0000
commit9105c57b7f6623310e33f3ee7e48a3114e5190a7 (patch)
tree39ab5ec24ca4022eaa170ee8477dac0b40758dee /compiler/rustc_parse/src/parser/path.rs
parent34582118afaf00b0eb2d209a90b181c7156b501c (diff)
parent95e519ecbf343c5246b2777b64d223fcd0f68b4c (diff)
downloadrust-9105c57b7f6623310e33f3ee7e48a3114e5190a7.tar.gz
rust-9105c57b7f6623310e33f3ee7e48a3114e5190a7.zip
Auto merge of #124256 - nnethercote:rm-NtIdent-NtLifetime, r=petrochenkov
Remove `NtIdent` and `NtLifetime`

This is one part of the bigger "remove `Nonterminal` and `TokenKind::Interpolated`" change drafted in #114647. More details in the individual commit messages.

r? `@petrochenkov`
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();