aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/class-dependent-extension-method.scala
blob: b557dfa8f08d02b57f38b7e355f68cf64e099552 (plain) (blame)
1
2
3
class C(val a: String) extends AnyVal {
  def foo[U <: a.type]: Unit = foo[U]
}