summaryrefslogblamecommitdiff
path: root/test/files/neg/cyclics.scala
blob: adfc94e4e54dec97c7410b9025ff26f802657b05 (plain) (tree)
1
2
3
4
5
6





                           
object test {
  type A = List[A]
  type B[T] = List[B[B[T]]]
  trait I { type E }
  type C = I { type E = C }
}