aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/hkt/hkt.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/hkt/hkt.scala')
-rw-r--r--tests/pending/hkt/hkt.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/hkt/hkt.scala b/tests/pending/hkt/hkt.scala
deleted file mode 100644
index 34858cd95..000000000
--- a/tests/pending/hkt/hkt.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-import scala.language.higherKinds
-// Minimal reproduction for:
-// scala.collection.mutable.ArrayStack.empty[Int]
-
-abstract class Super[C[_]] {
- def empty[T]: C[T] = ???
-}
-
-class Child[T]
-
-object Child extends Super[Child] {
- def empty: Child[Nothing] = new Child()
-
- Child.empty[Int]
-}