aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1131.scala
blob: 740a36bdb232b6bd1ab1707d1b50c4a913672edd (plain) (blame)
1
2
3
4
5
6
7
8
trait C {
  def p: Any
}

trait A { self: C { def p: String } =>
  def f(b: => Unit): Unit = {}
  f { p }
}