Skip to content

Commit 86e5ca2

Browse files
Drop unreachable case from type Zip
1 parent 9231155 commit 86e5ca2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/src/scala/Tuple.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ object Tuple:
244244
case (x *: xs, y *: ys) => (x, y) *: Zip[xs, ys]
245245
case (EmptyTuple, _) => EmptyTuple
246246
case (_, EmptyTuple) => EmptyTuple
247-
case _ => Tuple
248247

249248
/** Converts a tuple `(F[T1], ..., F[Tn])` to `(T1, ... Tn)` */
250249
type InverseMap[X <: Tuple, F[_]] <: Tuple = X match

0 commit comments

Comments
 (0)