Skip to content

Commit 41f53d7

Browse files
committed
Fix REPL test
1 parent 869107d commit 41f53d7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
scala> val xs = scala.collection.mutable.ListBuffer[Int]
22
1 | val xs = scala.collection.mutable.ListBuffer[Int]
33
| ^
4-
|Missing parameter type
4+
| Missing parameter type
55
|
6-
|The argument types of an anonymous function must be fully known. (SLS 8.5)
7-
|Expected type: ?
8-
|Missing type for parameter elems
6+
| I could not infer the type of the parameter elems.
97
scala> val xs = scala.collection.mutable.ListBuffer[Int]()
108
val xs: scala.collection.mutable.ListBuffer[Int] = ListBuffer()

0 commit comments

Comments
 (0)