summaryrefslogtreecommitdiff
path: root/test/files/neg/cyclic.scala
blob: 423fa700949294b7d739c0260d73488f9f34f3cb (plain) (blame)
1
2
3
4
5
6
abstract class test {

  type T = List[T];
  type U <: List[U];

}