summaryrefslogtreecommitdiff
path: root/test/pending/run/t0889.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t0889.scala')
-rwxr-xr-xtest/pending/run/t0889.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pending/run/t0889.scala b/test/pending/run/t0889.scala
deleted file mode 100755
index db6076e8e2..0000000000
--- a/test/pending/run/t0889.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-object Test extends Application {
-
- val a = List("a")
-
- a match {
- case Seq("a", "b", rest @ _*) => println("a, b, " + rest)
- case Seq(first, rest @ _*) => println("first: " + first + ", rest: " + rest)
- }
-}