summaryrefslogtreecommitdiff
path: root/test/files/jvm/bug560bis.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/bug560bis.scala')
-rw-r--r--test/files/jvm/bug560bis.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/files/jvm/bug560bis.scala b/test/files/jvm/bug560bis.scala
new file mode 100644
index 0000000000..13bf4b1ae0
--- /dev/null
+++ b/test/files/jvm/bug560bis.scala
@@ -0,0 +1,21 @@
+object Test {
+import scala.xml._;
+
+ def bar(args: Seq[String]) = args match {
+ case Seq(a,b,c,d @ _*) => Console.println("cool!")
+ case _ => Console.println("bah")
+ }
+ def foo(args: List[String]) =
+ Elem(null,"bla",Null, TopScope, (args map {x => Text(x)}):_*) match {
+ case Elem(_,_,_,_,Text("1"),_*) =>
+ Console.println("cool!")
+ case _ =>
+ Console.println("bah")
+ }
+
+ def main(args: Array[String]) = {
+ val li = List("1","2","3","4")
+ bar(li)
+ foo(li)
+ }
+}