summaryrefslogtreecommitdiff
path: root/test/files/pos/t8315b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8315b.scala')
-rw-r--r--test/files/pos/t8315b.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/pos/t8315b.scala b/test/files/pos/t8315b.scala
deleted file mode 100644
index d7a2bf565f..0000000000
--- a/test/files/pos/t8315b.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test extends Object {
- def crash: Unit = {
- val key = ""
- try map(new F(key))
- catch { case _: Throwable => }
- };
- final def map(f: F): Any = f.apply("");
-};
-final class F(key: String) {
- final def apply(a: Any): Any = throw new RuntimeException(key);
-}