]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_ast_pretty/src/pprust/state.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_ast_pretty / src / pprust / state.rs
index b2c62383fb69af5600a325f4223d730c3b5d590b..719fd2710932185213c279573fa57ec3c98c339d 100644 (file)
@@ -714,7 +714,6 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere
             token::NtIdent(e, is_raw) => IdentPrinter::for_ast_ident(e, is_raw).to_string(),
             token::NtLifetime(e) => e.to_string(),
             token::NtLiteral(ref e) => self.expr_to_string(e),
-            token::NtTT(ref tree) => self.tt_to_string(tree),
             token::NtVis(ref e) => self.vis_to_string(e),
         }
     }