summaryrefslogtreecommitdiff
path: root/test/files/pos/bug0646.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-04-17 12:05:31 +0000
committermihaylov <mihaylov@epfl.ch>2007-04-17 12:05:31 +0000
commit02550b2be341217162549fd3e45ef33b7532c0f3 (patch)
tree8c7f2aea8433adb022b63387466e17b9ca243403 /test/files/pos/bug0646.scala
parent44a06ff6abd64e68d0acec48b789f9a48ef1d455 (diff)
downloadscala-02550b2be341217162549fd3e45ef33b7532c0f3.tar.gz
scala-02550b2be341217162549fd3e45ef33b7532c0f3.tar.bz2
scala-02550b2be341217162549fd3e45ef33b7532c0f3.zip
Moved some test from pending/ to files/
Diffstat (limited to 'test/files/pos/bug0646.scala')
-rw-r--r--test/files/pos/bug0646.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/files/pos/bug0646.scala b/test/files/pos/bug0646.scala
new file mode 100644
index 0000000000..64214f65b1
--- /dev/null
+++ b/test/files/pos/bug0646.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
+ //}
+
+}