summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug646.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/bug646.scala')
-rw-r--r--test/pending/pos/bug646.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/pending/pos/bug646.scala b/test/pending/pos/bug646.scala
new file mode 100644
index 0000000000..64214f65b1
--- /dev/null
+++ b/test/pending/pos/bug646.scala
@@ -0,0 +1,21 @@
+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
+ }
+
+ //val n: NodeSeq = new NodeSeq { val theSeq = books.child }
+ //n match {
+ // case t @ <title>Blabla</title> => t
+ //}
+
+}