summaryrefslogtreecommitdiff
path: root/test/files/neg/t1878.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t1878.scala')
-rw-r--r--test/files/neg/t1878.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/neg/t1878.scala b/test/files/neg/t1878.scala
index 99fee48a96..b29186afc0 100644
--- a/test/files/neg/t1878.scala
+++ b/test/files/neg/t1878.scala
@@ -1,13 +1,13 @@
object Test extends App {
- // illegal
+ // illegal
val err1 = "" match { case Seq(f @ _*, ',') => f }
-
+
// no error
val List(List(arg1, _*), _) = List(List(1,2,3), List(4,5,6))
-
+
// illegal
val List(List(_*, arg2), _) = List(List(1,2,3), List(4,5,6))
-
+
/* see t1878-typer.scala
// illegal - bug #1764
null match {