aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t8224.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t8224.scala')
-rw-r--r--tests/pending/pos/t8224.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/pos/t8224.scala b/tests/pending/pos/t8224.scala
deleted file mode 100644
index 2fae925df..000000000
--- a/tests/pending/pos/t8224.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-import language.higherKinds
-
-trait P [N1, +E1[X <: N1]]
-trait PIn[N2, +E2[X <: N2]] extends P[Int,Any]
-
-trait EI extends PIn[Int, Nothing]
-trait NI extends PIn[Int, Nothing]
-
-object Test {
- val lub = if (true) ??? : EI else ??? : NI
- val pin: PIn[Int,Nothing] = lub
-}