summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2007-09-04 17:46:21 +0000
committerBurak Emir <emir@epfl.ch>2007-09-04 17:46:21 +0000
commit92629629ab76311540303f6644f5f336a6fe81d3 (patch)
tree5e0c420fcbcf76221f46551df10c7bddc9dbc2b3 /test/pending
parent259528cdf730201e59b76d49989454037ce4b314 (diff)
downloadscala-92629629ab76311540303f6644f5f336a6fe81d3.tar.gz
scala-92629629ab76311540303f6644f5f336a6fe81d3.tar.bz2
scala-92629629ab76311540303f6644f5f336a6fe81d3.zip
fixed bugs.
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/pos/bug0646.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/pending/pos/bug0646.scala b/test/pending/pos/bug0646.scala
new file mode 100644
index 0000000000..64214f65b1
--- /dev/null
+++ b/test/pending/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
+ //}
+
+}