summaryrefslogtreecommitdiff
path: root/test/pending/pos
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/pending/pos
parent44a06ff6abd64e68d0acec48b789f9a48ef1d455 (diff)
downloadscala-02550b2be341217162549fd3e45ef33b7532c0f3.tar.gz
scala-02550b2be341217162549fd3e45ef33b7532c0f3.tar.bz2
scala-02550b2be341217162549fd3e45ef33b7532c0f3.zip
Moved some test from pending/ to files/
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/bug0422.scala17
-rw-r--r--test/pending/pos/bug599.scala18
-rw-r--r--test/pending/pos/bug646.scala21
3 files changed, 0 insertions, 56 deletions
diff --git a/test/pending/pos/bug0422.scala b/test/pending/pos/bug0422.scala
deleted file mode 100644
index cb3ba279d4..0000000000
--- a/test/pending/pos/bug0422.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-import scala.util.regexp.WordExp;
-import scala.util.automata.WordBerrySethi;
-
-object BoolWordExp extends WordExp {
- type _labelT = MyLabels;
- type _regexpT = RegExp;
- abstract class MyLabels extends Label ;
- case class MyLabel(c:Char) extends MyLabels;
-}
-
-object MyTranslator extends WordBerrySethi {
- override val lang = BoolWordExp;
- import lang._;
- override protected def seenLabel( r:RegExp, i:Int, label: _labelT ): Unit = {
- super.seenLabel(r,i,label)
- }
-}
diff --git a/test/pending/pos/bug599.scala b/test/pending/pos/bug599.scala
deleted file mode 100644
index 885159af66..0000000000
--- a/test/pending/pos/bug599.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-abstract class FooA {
- type A <: Ax;
- abstract class Ax;
- abstract class InnerA {
- type B <: A;
- def doB : B;
- }
- }
- trait FooB extends FooA {
- type A <: Ax;
- trait Ax extends super.Ax { def xxx : Int; }
- abstract class InnerB extends InnerA {
- // type B <: A;
- val a : A = doB;
- a.xxx;
- doB.xxx;
- }
- }
diff --git a/test/pending/pos/bug646.scala b/test/pending/pos/bug646.scala
deleted file mode 100644
index 64214f65b1..0000000000
--- a/test/pending/pos/bug646.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
- //}
-
-}