summaryrefslogtreecommitdiff
path: root/test/files/pos/t2994c.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t2994c.scala')
-rw-r--r--test/files/pos/t2994c.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/t2994c.scala b/test/files/pos/t2994c.scala
deleted file mode 100644
index 1ad3655c89..0000000000
--- a/test/files/pos/t2994c.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
- trait Bar[X[_]]
- trait Qux[S[_] <: Bar[S], T]
- trait Baz[S[_] <: Bar[S]] {
- type Apply[T] = Qux[S,T]
- }
- trait Foo[/**/V[_] <: Bar[V]/**/] extends Bar[Baz[V]#Apply]
-}