summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorSean McDirmid <sean.mcdirmid@gmail.com>2006-11-25 07:20:25 +0000
committerSean McDirmid <sean.mcdirmid@gmail.com>2006-11-25 07:20:25 +0000
commit41d22eefca029c4aa5bf7192e82602baa714493a (patch)
tree5c6ee2e05ada161b09715f7f4958106d75ac857f /test/files
parent086f1209bf3303f19c36d802b383de229a985183 (diff)
downloadscala-41d22eefca029c4aa5bf7192e82602baa714493a.tar.gz
scala-41d22eefca029c4aa5bf7192e82602baa714493a.tar.bz2
scala-41d22eefca029c4aa5bf7192e82602baa714493a.zip
Diffstat (limited to 'test/files')
-rw-r--r--test/files/resident/bug597/Main.scala10
-rw-r--r--test/files/resident/bug597/Test.scala27
-rw-r--r--test/files/resident/bug597/what-happened.txt10
3 files changed, 0 insertions, 47 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";
- }
-}
diff --git a/test/files/resident/bug597/what-happened.txt b/test/files/resident/bug597/what-happened.txt
deleted file mode 100644
index 52e67eda9c..0000000000
--- a/test/files/resident/bug597/what-happened.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Run in resident:
-
-bash-3.00$ ~/runtime-workspace/scala/dists/latest/bin/scalac -resident -d ../bin -sourcepath .
-
-nsc> test/Test.scala
-
-nsc> test/Main.scala
-Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
-
-I think there is a recursive function gone crazy somewhere.