summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/bug441.check1
-rw-r--r--test/files/run/bug441.scala12
2 files changed, 0 insertions, 13 deletions
diff --git a/test/files/run/bug441.check b/test/files/run/bug441.check
deleted file mode 100644
index 607ee1a6b8..0000000000
--- a/test/files/run/bug441.check
+++ /dev/null
@@ -1 +0,0 @@
-plante pas
diff --git a/test/files/run/bug441.scala b/test/files/run/bug441.scala
deleted file mode 100644
index d90e872baa..0000000000
--- a/test/files/run/bug441.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-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()
-}