summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/jvm/xmlmore.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/jvm/xmlmore.scala b/test/files/jvm/xmlmore.scala
index c6322bc1ef..0ba60b05b7 100644
--- a/test/files/jvm/xmlmore.scala
+++ b/test/files/jvm/xmlmore.scala
@@ -17,4 +17,13 @@ Ours is the portal of hope, come as you are."
Console println crz // this guy will escaped, and rightly so
Console println nazim
Console println "End Test"
+
+ <x:foo xmlns:x="gaga"/> match {
+ case scala.xml.QNode("gaga","foo",md,child@_*) =>
+ }
+
+ <x:foo xmlns:x="gaga"/> match {
+ case scala.xml.Node("foo",md,child@_*) =>
+ }
+
}