From c3d61574c908d7fee5d16b300449c2958adad9fb Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 19 May 2014 12:56:09 +0200 Subject: Revert "SI-8601 Don't treat newarray as dead code" This reverts commit 70b912a87433c9589af33e4f8b33dca39abb66e5. --- test/files/run/t8601b.scala | 3 --- 1 file changed, 3 deletions(-) (limited to 'test/files/run/t8601b.scala') diff --git a/test/files/run/t8601b.scala b/test/files/run/t8601b.scala index 9c37ce33d6..c01caa57d0 100644 --- a/test/files/run/t8601b.scala +++ b/test/files/run/t8601b.scala @@ -1,14 +1,11 @@ object Test { def len(x: Array[String]): Unit = x.length def load(x: Array[String]): Unit = x(0) - def newarray(i: Int): Unit = new Array[Int](i) def check(x: => Any) = try { x; sys.error("failed to throw NPE!") } catch { case _: NullPointerException => } - def checkNegSize(x: => Any) = try { x; sys.error("failed to throw NegativeArraySizeException!") } catch { case _: NegativeArraySizeException => } def main(args: Array[String]) { check(len(null)) // bug: did not NPE check(load(null)) - checkNegSize(newarray(-1)) } } -- cgit v1.2.3