summaryrefslogtreecommitdiff
path: root/test/files/run/t8233-bcode.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t8233-bcode.scala')
-rw-r--r--test/files/run/t8233-bcode.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/t8233-bcode.scala b/test/files/run/t8233-bcode.scala
new file mode 100644
index 0000000000..fae1c2b702
--- /dev/null
+++ b/test/files/run/t8233-bcode.scala
@@ -0,0 +1,18 @@
+object Test {
+ def bar(s: String) = s;
+ val o: Option[Null] = None
+ def nullReference {
+ val a: Null = o.get
+ bar(a) // Was: VerifyError under GenICode
+ }
+
+ def literal {
+ val a: Null = null
+ bar(a)
+ }
+
+ def main(args: Array[String]) = {
+ try { nullReference } catch { case _: NoSuchElementException => }
+ literal
+ }
+}