summaryrefslogtreecommitdiff
path: root/test/pending/pos/t5400.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t5400.scala')
-rw-r--r--test/pending/pos/t5400.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/pending/pos/t5400.scala b/test/pending/pos/t5400.scala
deleted file mode 100644
index cb4be4bde5..0000000000
--- a/test/pending/pos/t5400.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-trait TFn1B {
- type In
- type Out
- type Apply[T <: In] <: Out
-}
-
-trait TFn1[I, O] extends TFn1B {
- type In = I
- type Out = O
-}
-
-trait >>[F1 <: TFn1[_, _], F2 <: TFn1[_, _]] extends TFn1[F1#In, F2#Out] {
- type Apply[T] = F2#Apply[F1#Apply[T]]
-}