aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-07-28 14:53:58 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-07-28 14:53:58 +0200
commita43d39ad719978fbb36663f336c1c7cd2c4da1e0 (patch)
treed2e2923351f6c43e5defbfba3cc7011ae8685024 /tests
parent15129574ec21fb66193d183201e5caee7ff53120 (diff)
downloaddotty-a43d39ad719978fbb36663f336c1c7cd2c4da1e0.tar.gz
dotty-a43d39ad719978fbb36663f336c1c7cd2c4da1e0.tar.bz2
dotty-a43d39ad719978fbb36663f336c1c7cd2c4da1e0.zip
Workaround #742 and add a test for it.
Making a correct fix could take some time, and I want to find other issues before I start working on this one.
Diffstat (limited to 'tests')
-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 }
+ }
+}