summaryrefslogtreecommitdiff
path: root/test/files/pos/t8315b.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-02-20 11:23:50 +0100
committerJason Zaugg <jzaugg@gmail.com>2014-02-20 11:31:35 +0100
commit64ed64ed5c2f64ee83a7963273bedf490926050e (patch)
treefc4db7f97fba020fe9d172c0a9a3af8ef4ef9e19 /test/files/pos/t8315b.scala
parent0561dd084b5f3c2678eb032a40b85cb25bb6d589 (diff)
downloadscala-64ed64ed5c2f64ee83a7963273bedf490926050e.tar.gz
scala-64ed64ed5c2f64ee83a7963273bedf490926050e.tar.bz2
scala-64ed64ed5c2f64ee83a7963273bedf490926050e.zip
SI-8315 Fix crash in dead code elimination
It was a cache invalidation bug. We need to mark the Code as touched to invalidate the caches behind `predecessors` and `successors`.
Diffstat (limited to 'test/files/pos/t8315b.scala')
-rw-r--r--test/files/pos/t8315b.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/t8315b.scala b/test/files/pos/t8315b.scala
new file mode 100644
index 0000000000..d7a2bf565f
--- /dev/null
+++ b/test/files/pos/t8315b.scala
@@ -0,0 +1,11 @@
+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);
+}