summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pending/pos/bug646.scala (renamed from test/files/pos/bug646.scala)7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/files/pos/bug646.scala b/test/pending/pos/bug646.scala
index d5d3471731..64214f65b1 100644
--- a/test/files/pos/bug646.scala
+++ b/test/pending/pos/bug646.scala
@@ -9,8 +9,13 @@ object xfor {
<title>Baaaaaaalabla</title>
</bks>;
- new NodeSeq { val theSeq = books.child } match {
+ 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
+ //}
+
}