Skip to content

Commit bd41f01

Browse files
committed
Patch test
1 parent 04989b1 commit bd41f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench-run/src/main/scala/dotty/tools/benchmarks/tuples/TupleOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class TupleOps {
5050
def tupleMergeSort(tuple: Tuple): Tuple =
5151
if (tuple.size <= 1) tuple
5252
else {
53-
val (tuple1, tuple2) = tuple.splitAt(tuple.size / 2)
53+
val (tuple1, tuple2) = tuple.splitAt(tuple.size / 2): (Tuple, Tuple) // FIXME remove ascription
5454
val (sorted1, sorted2) = (tupleMergeSort(tuple1), tupleMergeSort(tuple2))
5555
tupleMerge(sorted1, sorted2)
5656
}

0 commit comments

Comments
 (0)