summaryrefslogtreecommitdiff
path: root/test/files/run/t10069b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t10069b.scala')
-rw-r--r--test/files/run/t10069b.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/t10069b.scala b/test/files/run/t10069b.scala
new file mode 100644
index 0000000000..c9d652bb0c
--- /dev/null
+++ b/test/files/run/t10069b.scala
@@ -0,0 +1,13 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ try {
+ Int.box(???) // crashed the compiler: java.util.NoSuchElementException: key not found: Lscala/runtime/Nothing$;
+ sys.error("no exception")
+ } catch {
+ case _: NotImplementedError =>
+ // oka
+ case e: Throwable =>
+ sys.error("wrong exception: " + e)
+ }
+ }
+}