summaryrefslogtreecommitdiff
path: root/test/files/neg/t2070.scala
blob: c810568edc52701d4eb50e4f098d5eade0308b8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object t2070 {
  trait A {
    type T[X]
    def f(x : T[Int]) = x
  }

  object B extends A {
    trait T[X[_]]
  }
}