summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2007-03-22 18:22:49 +0000
committerMartin Odersky <odersky@gmail.com>2007-03-22 18:22:49 +0000
commit800ce668acb253c3d5e57b5230d913ad155a0f74 (patch)
treea7526664522ee11348087e5bb80957182b9ba17e /test/files/run
parent0196b0e057dcd62903b6635f53d2857ea182280a (diff)
downloadscala-800ce668acb253c3d5e57b5230d913ad155a0f74.tar.gz
scala-800ce668acb253c3d5e57b5230d913ad155a0f74.tar.bz2
scala-800ce668acb253c3d5e57b5230d913ad155a0f74.zip
modified sinsibility checks and test cases
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()
-}