summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/bug646.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/files/pos/bug646.scala b/test/files/pos/bug646.scala
deleted file mode 100644
index d5d3471731..0000000000
--- a/test/files/pos/bug646.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-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
- }
-
-}