aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t8601b.scala
blob: 3816e0b83f311a183801c2980d38efbd31ef0114 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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]): Unit = {
    check(len(null)) // bug: did not NPE
    check(load(null))
    checkNegSize(newarray(-1))
  }
}