summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t8601b.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/files/run/t8601b.scala b/test/files/run/t8601b.scala
index c01caa57d0..42b562af96 100644
--- a/test/files/run/t8601b.scala
+++ b/test/files/run/t8601b.scala
@@ -1,11 +1,9 @@
object Test {
def len(x: Array[String]): Unit = x.length
- def load(x: Array[String]): Unit = x(0)
def check(x: => Any) = try { x; sys.error("failed to throw NPE!") } catch { case _: NullPointerException => }
def main(args: Array[String]) {
- check(len(null)) // bug: did not NPE
- check(load(null))
+ check(len(null))
}
}