Skip to content

Commit 283ca76

Browse files
committed
Replace &'tcx List<Ty<'tcx>> in Tuple with SubstsRef<'tcx>
1 parent 728a2db commit 283ca76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/ty/sty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ pub enum TyKind<'tcx> {
171171
Never,
172172

173173
/// A tuple type. For example, `(i32, bool)`.
174-
Tuple(&'tcx List<Ty<'tcx>>),
174+
Tuple(SubstsRef<'tcx>),
175175

176176
/// The projection of an associated type. For example,
177177
/// `<T as Trait<..>>::N`.

0 commit comments

Comments
 (0)