summaryrefslogtreecommitdiff
path: root/test/files/pos/bug646.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug646.scala')
-rw-r--r--test/files/pos/bug646.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/pos/bug646.scala b/test/files/pos/bug646.scala
new file mode 100644
index 0000000000..d5d3471731
--- /dev/null
+++ b/test/files/pos/bug646.scala
@@ -0,0 +1,16 @@
+object xfor {
+
+ import scala.xml.NodeSeq
+
+ val books =
+ <bks>
+ <title>Blabla</title>
+ <title>Blubabla</title>
+ <title>Baaaaaaalabla</title>
+ </bks>;
+
+ new NodeSeq { val theSeq = books.child } match {
+ case t @ <title>Blabla</title> => t
+ }
+
+}