summaryrefslogtreecommitdiff
path: root/test/files/pos/bug0646.scala
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/files/pos/bug0646.scala
parent259528cdf730201e59b76d49989454037ce4b314 (diff)
downloadscala-92629629ab76311540303f6644f5f336a6fe81d3.tar.gz
scala-92629629ab76311540303f6644f5f336a6fe81d3.tar.bz2
scala-92629629ab76311540303f6644f5f336a6fe81d3.zip
fixed bugs.
Diffstat (limited to 'test/files/pos/bug0646.scala')
-rw-r--r--test/files/pos/bug0646.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/files/pos/bug0646.scala b/test/files/pos/bug0646.scala
deleted file mode 100644
index 64214f65b1..0000000000
--- a/test/files/pos/bug0646.scala
+++ /dev/null
@@ -1,21 +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
- }
-
- //val n: NodeSeq = new NodeSeq { val theSeq = books.child }
- //n match {
- // case t @ <title>Blabla</title> => t
- //}
-
-}