aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/run/StackMap.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pending/run/StackMap.scala b/tests/pending/run/StackMap.scala
new file mode 100644
index 000000000..5220758fe
--- /dev/null
+++ b/tests/pending/run/StackMap.scala
@@ -0,0 +1,7 @@
+object Test {
+ var implicitsCache = null
+
+ def main(args: Array[String]): Unit = {
+ implicitsCache = try{null} catch { case ex: Exception => null }
+ }
+}