diff options
| -rw-r--r-- | src/librustc/ty/sty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<Ty<'tcx>>), + Tuple(SubstsRef<'tcx>), /// The projection of an associated type. For example, /// `<T as Trait<..>>::N`. |
