summaryrefslogtreecommitdiff
path: root/test/files/run/t8601b.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-18 12:11:29 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-05-18 12:11:29 +0200
commit99b4ef8d8472f154d73160f5fe72daf081abb24e (patch)
tree434d9d91b49bd09c993014d9d8cb28e61f695128 /test/files/run/t8601b.scala
parent0b432f9cd22b6e9770852e5b331a15f0534a312c (diff)
downloadscala-99b4ef8d8472f154d73160f5fe72daf081abb24e.tar.gz
scala-99b4ef8d8472f154d73160f5fe72daf081abb24e.tar.bz2
scala-99b4ef8d8472f154d73160f5fe72daf081abb24e.zip
Add a test for array load
Diffstat (limited to 'test/files/run/t8601b.scala')
-rw-r--r--test/files/run/t8601b.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/files/run/t8601b.scala b/test/files/run/t8601b.scala
index 42b562af96..c01caa57d0 100644
--- a/test/files/run/t8601b.scala
+++ b/test/files/run/t8601b.scala
@@ -1,9 +1,11 @@
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))
+ check(len(null)) // bug: did not NPE
+ check(load(null))
}
}