summaryrefslogtreecommitdiff
path: root/test/files/run/t7459d.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7459d.scala')
-rw-r--r--test/files/run/t7459d.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t7459d.scala b/test/files/run/t7459d.scala
new file mode 100644
index 0000000000..3263701f9d
--- /dev/null
+++ b/test/files/run/t7459d.scala
@@ -0,0 +1,15 @@
+class LM {
+ class Node[B1]
+ case class CC(n: LM)
+
+ // crash
+ val f: (LM => Any) = {
+ case tttt =>
+ val uuuu: (tttt.type, Any) = (tttt, 0)
+ new uuuu._1.Node[Any]()
+ }
+}
+
+object Test extends App {
+ new LM().f(new LM())
+}