aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t6624.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t6624.scala')
-rw-r--r--tests/untried/pos/t6624.scala28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/untried/pos/t6624.scala b/tests/untried/pos/t6624.scala
new file mode 100644
index 000000000..43bc565cb
--- /dev/null
+++ b/tests/untried/pos/t6624.scala
@@ -0,0 +1,28 @@
+sealed trait KList[+M[_]]
+
+case class KCons[M[_], +T <: KList[M]](
+ tail: T
+) extends KList[M]
+
+case class KNil[M[_]]() extends KList[M]
+
+object Test {
+ val klist: KCons[Option, KCons[Option, KCons[Option, KNil[Nothing]]]] = ???
+
+ // crashes with
+ // "Exception in thread "main" scala.reflect.internal.Types$TypeError: value _1 is not a member
+ // of KCons[Option,KCons[Option,KNil[Nothing]]]"
+ klist match {
+ case KCons(KCons(KCons(_))) =>
+ }
+
+ // fails with a similar message as an error, rather than a crash.
+ klist match {
+ case KCons(KCons(_)) =>
+ }
+
+ // succeeds
+ klist match {
+ case KCons(_) =>
+ }
+}