aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/tcpoly_checkkinds_mix.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/tcpoly_checkkinds_mix.scala')
-rw-r--r--tests/untried/pos/tcpoly_checkkinds_mix.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/untried/pos/tcpoly_checkkinds_mix.scala b/tests/untried/pos/tcpoly_checkkinds_mix.scala
new file mode 100644
index 000000000..3734405f8
--- /dev/null
+++ b/tests/untried/pos/tcpoly_checkkinds_mix.scala
@@ -0,0 +1,10 @@
+trait Iterable[A <: Bound[A], Bound[_]] {
+ type MyType[x <: Bound[x]] <: Iterable[x, Bound]
+ def map[B <: Bound[B]](f: A => B): MyType[B]
+ def flatMap[B <: Bound[B]](f: A => MyType[B]): MyType[B]
+ def filter(p: A => Boolean): MyType[A]
+}
+
+trait OrderedSet[T <: Ordered[T]] extends Iterable[T, Ordered] {
+ type MyType[x <: Ordered[x]] = OrderedSet[x]
+}