aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/NoCyclicReference.scala
blob: e42896661ec2633450e503126b5530cc7f0feb7f (plain) (blame)
1
2
3
4
5
6
7
package test

trait Iterable[+A] { self =>

  type CC[B] <: Iterable[B] { type CC[C] = self.CC[C] }

}