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`.