summaryrefslogtreecommitdiff
path: root/test/files/resident/bug597
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-11-29 13:11:31 +0000
committermichelou <michelou@epfl.ch>2006-11-29 13:11:31 +0000
commitf9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9 (patch)
tree46e7bc64451aec5325e0d06a671cd5b549ab29fd /test/files/resident/bug597
parent50c411759b491a88d7ffca8fcda9bce9d22ac22c (diff)
downloadscala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.tar.gz
scala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.tar.bz2
scala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.zip
renamed directory 'resident' to match '--res' o...
renamed directory 'resident' to match '--res' option
Diffstat (limited to 'test/files/resident/bug597')
-rw-r--r--test/files/resident/bug597/Main.scala10
-rw-r--r--test/files/resident/bug597/Test.scala27
2 files changed, 0 insertions, 37 deletions
diff --git a/test/files/resident/bug597/Main.scala b/test/files/resident/bug597/Main.scala
deleted file mode 100644
index 24d1327135..0000000000
--- a/test/files/resident/bug597/Main.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package test;
-
-object Main {
- def main(args : Array[String]) : Unit = {
- new ExtC {
- type A = Ax;
- class Ax extends super.Ax;
- }
- }
-}
diff --git a/test/files/resident/bug597/Test.scala b/test/files/resident/bug597/Test.scala
deleted file mode 100644
index 2f63f46c3d..0000000000
--- a/test/files/resident/bug597/Test.scala
+++ /dev/null
@@ -1,27 +0,0 @@
-package test;
-
-abstract class Base {
- type A <: Ax;
-
- abstract class Ax {
- def a = null;
- def string = "A";
- }
-}
-trait ExtB extends Base {
- type A <: Ax;
- trait Ax extends super.Ax {
- def c = null;
- override def string = super.string + "C";
- }
-}
-
-trait ExtC extends /*ExtA with*/ ExtB {
- type A <: Ax;
- trait Ax extends super.Ax {
- a
- c
- def d = null;
- override def string = super.string + "D";
- }
-}