summaryrefslogtreecommitdiff
path: root/test/pending/run/bug441.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/bug441.scala')
-rw-r--r--test/pending/run/bug441.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/pending/run/bug441.scala b/test/pending/run/bug441.scala
deleted file mode 100644
index d90e872baa..0000000000
--- a/test/pending/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()
-}