]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_symbol_mangling/src/legacy.rs
Rollup merge of #105515 - estebank:issue-104141, r=oli-obk
[rust.git] / compiler / rustc_symbol_mangling / src / legacy.rs
index 281b2d88f483bd66bd16e2994fad7df908f79619..a59c9011ab21a4116e4452b206392781e0ab0e25 100644 (file)
@@ -216,7 +216,7 @@ fn print_type(mut self, ty: Ty<'tcx>) -> Result<Self::Type, Self::Error> {
         match *ty.kind() {
             // Print all nominal types as paths (unlike `pretty_print_type`).
             ty::FnDef(def_id, substs)
-            | ty::Alias(_, ty::AliasTy { def_id, substs })
+            | ty::Alias(_, ty::AliasTy { def_id, substs, .. })
             | ty::Closure(def_id, substs)
             | ty::Generator(def_id, substs, _) => self.print_def_path(def_id, substs),