aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/hklower.scala
blob: 033ee3a3475672d9d7559e20b8480c29ec184f52 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                         
class Test { // error: conflicting bounds

  type T[X]
  type U[X] = T[X]

  type V[X] >: T[X]
  type W[X] >: T[X] <: T[X]

  def f[C[X] >: T[X]]() = ???

}