aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/exbound.scala
blob: be78abc269dee30eadec19716a8aba25b3ae8701 (plain) (blame)
1
2
3
4
5
6
7
class A[T <: A[T]] {

}

object Test {
  val x: A[_] = null
}