From b11a27e3e655105ec6f7640934072ba7966c88a3 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 19 May 2014 12:56:10 +0200 Subject: Revert "Add a test for array load" This reverts commit 99b4ef8d8472f154d73160f5fe72daf081abb24e. --- test/files/run/t8601b.scala | 4 +--- 1 file changed, 1 insertion(+), 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)) } } -- cgit v1.2.3