summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-03-31 10:36:49 +0000
committerMartin Odersky <odersky@gmail.com>2006-03-31 10:36:49 +0000
commit3049afc7ec7ca038dd8d68d26803c0733df01ee1 (patch)
tree0a41f798b75b4aef55ab00e645cc77b6cdb0be69 /test/pending/run
parent7ff239d7a998fb0ef7443e6c2020b6dcb64dabdd (diff)
downloadscala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.tar.gz
scala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.tar.bz2
scala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.zip
fixed several old bugs
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/bug405.scala5
-rw-r--r--test/pending/run/bug424.scala3
-rw-r--r--test/pending/run/bug429.scala15
-rw-r--r--test/pending/run/bug441.scala12
4 files changed, 35 insertions, 0 deletions
diff --git a/test/pending/run/bug405.scala b/test/pending/run/bug405.scala
new file mode 100644
index 0000000000..a1e3864496
--- /dev/null
+++ b/test/pending/run/bug405.scala
@@ -0,0 +1,5 @@
+object Test extends Application {
+ val x = M;
+ object M;
+ assert(x eq M)
+}
diff --git a/test/pending/run/bug424.scala b/test/pending/run/bug424.scala
new file mode 100644
index 0000000000..bc7a55732d
--- /dev/null
+++ b/test/pending/run/bug424.scala
@@ -0,0 +1,3 @@
+object M {
+ def f = 3;
+}
diff --git a/test/pending/run/bug429.scala b/test/pending/run/bug429.scala
new file mode 100644
index 0000000000..b2cc8128c0
--- /dev/null
+++ b/test/pending/run/bug429.scala
@@ -0,0 +1,15 @@
+object Test {
+ abstract class A {
+ Console.print("A");
+ val x: Int;
+ val y: Int = {Console.print("y"); x + 1}
+ }
+ class B extends A {
+ Console.print("B");
+ val z = 0;
+ val x = 4 + z
+ }
+ def main (args: Array[String]): Unit = {
+ Console.print((new B).y);
+ }
+}
diff --git a/test/pending/run/bug441.scala b/test/pending/run/bug441.scala
new file mode 100644
index 0000000000..d90e872baa
--- /dev/null
+++ b/test/pending/run/bug441.scala
@@ -0,0 +1,12 @@
+object Test extends Application {
+
+ def bug() = {
+ val foo: Array[String] = Array("1","2","3");
+ if( foo.length == null ) // == 0 makes more sense, but still
+ Console.println("plante"); // this code leads to runtime crash
+ else
+ Console.println("plante pas");
+ }
+
+ bug()
+}