From 283ca7616c69a6c893b7d9dd157fa9df4a746b72 Mon Sep 17 00:00:00 2001 From: varkor Date: Fri, 26 Apr 2019 00:26:57 +0100 Subject: [PATCH] Replace `&'tcx List>` in `Tuple` with `SubstsRef<'tcx>` --- src/librustc/ty/sty.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/ty/sty.rs b/src/librustc/ty/sty.rs index 9a90ccda914..7404cf0b0d2 100644 --- a/src/librustc/ty/sty.rs +++ b/src/librustc/ty/sty.rs @@ -171,7 +171,7 @@ pub enum TyKind<'tcx> { Never, /// A tuple type. For example, `(i32, bool)`. - Tuple(&'tcx List>), + Tuple(SubstsRef<'tcx>), /// The projection of an associated type. For example, /// `>::N`.