Skip to content

Commit 242cb92

Browse files
committed
Fix after rebase
1 parent b722901 commit 242cb92

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tests/run-with-compiler/i5965.check

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
val y: collection.immutable.List[scala.Int] = scala.List.apply[scala.Int](1, 2, 3)
3+
34
(y: collection.immutable.List[scala.Int])
45
}
56
List(1, 2, 3)
67
{
78
val y: scala.Option[scala.Int] = scala.Option.apply[scala.Int](4)
9+
810
(y: scala.Option[scala.Int])
911
}
1012
Some(4)
1113
{
1214
val y: collection.immutable.Map[scala.Int, scala.Int] = scala.Predef.Map.apply[scala.Int, scala.Int](scala.Predef.ArrowAssoc[scala.Int](4).->[scala.Int](1))
15+
1316
(y: collection.immutable.Map[scala.Int, scala.Int])
1417
}
1518
Map(4 -> 1)

tests/run-with-compiler/i5965b.check

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
val y: collection.immutable.List[scala.Int] = scala.List.apply[scala.Int](1, 2, 3)
3+
34
(y: collection.immutable.List[scala.Int])
45
}
56
List(1, 2, 3)
67
{
78
val y: scala.Option[scala.Int] = scala.Option.apply[scala.Int](4)
9+
810
(y: scala.Option[scala.Int])
911
}
1012
Some(4)
1113
{
1214
val y: collection.immutable.Map[scala.Int, scala.Int] = scala.Predef.Map.apply[scala.Int, scala.Int](scala.Predef.ArrowAssoc[scala.Int](4).->[scala.Int](1))
15+
1316
(y: collection.immutable.Map[scala.Int, scala.Int])
1417
}
1518
Map(4 -> 1)

0 commit comments

Comments
 (0)