Skip to content

Commit 1fbb3a5

Browse files
committed
.
1 parent bcae8fb commit 1fbb3a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

repl/test-resources/repl/i6474

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ scala> (1, 2): Foo3.T[Int][Int]
1515
| Missing type parameter for Foo3.T[Int][Int]
1616
1 error found
1717
scala> ((1, 2): Foo3.T[Int][Int][Int]): Foo3.T[Any][Int][Int]
18-
val res2: Foo3.T[Any][Int][Int] = (1,2)
18+
val res2: Foo3.T[Any][Int][Int] = (1, 2)
1919
scala> object Foo3 { type T[A] = [B] =>> [C] =>> (A, B) }
2020
// defined object Foo3
2121
scala> ((1, 2): Foo3.T[Int][Int][Int])
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
scala> List(1,2,3)
22
val res0: List[Int] = List(1, 2, 3)
33
scala> Map("foo" -> 1)
4-
val res1: Map[String, Int] = Map(foo -> 1)
4+
val res1: Map[String, Int] = Map("foo" -> 1)
55
scala> Seq('a','b')
6-
val res2: Seq[Char] = List(a, b)
6+
val res2: Seq[Char] = List('a', 'b')
77
scala> Set(4, 5)
88
val res3: Set[Int] = Set(4, 5)
99
scala> Iterator(1)
10-
val res4: Iterator[Int] = <iterator>
10+
val res4: Iterator[Int] = non-empty iterator

0 commit comments

Comments
 (0)