aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t3960.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t3960.scala')
-rw-r--r--tests/pending/pos/t3960.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pending/pos/t3960.scala b/tests/pending/pos/t3960.scala
new file mode 100644
index 000000000..5c658e9fb
--- /dev/null
+++ b/tests/pending/pos/t3960.scala
@@ -0,0 +1,7 @@
+class A {
+ class C[x]
+ val cs = new scala.collection.mutable.HashMap[C[_], Int]
+ def c: C[_] = sys.error("")
+ val eval: C[_] = c
+ cs(c) += 1
+}