summaryrefslogtreecommitdiff
path: root/test/files/pos/exbound.scala
blob: 243d5832ce94eab7ec562fedd5568f3c7ee1b92c (plain) (blame)
1
2
3
4
5
6
7
class A[T <: A[T]] {

}

object Test {
  val x: A[X] forSome { type X } = null
}