summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorDavid MacIver <david.maciver@gmail.com>2008-11-09 17:55:15 +0000
committerDavid MacIver <david.maciver@gmail.com>2008-11-09 17:55:15 +0000
commitcdbd7d9a019483ff94a479f1031592f721f2c44c (patch)
tree8c9fa1ced26e676acfa8258946907c448798cb0c /test/pending
parent151a01cd3e166026eaaba5ec4de815266eeada6f (diff)
downloadscala-cdbd7d9a019483ff94a479f1031592f721f2c44c.tar.gz
scala-cdbd7d9a019483ff94a479f1031592f721f2c44c.tar.bz2
scala-cdbd7d9a019483ff94a479f1031592f721f2c44c.zip
General tidying from paul (mostly concerning us...
General tidying from paul (mostly concerning use of setType).
Diffstat (limited to 'test/pending')
-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)
- }
-}