summaryrefslogtreecommitdiff
path: root/test/pos/michel2.scala
blob: 8f3f34e1ba083433b6f8cb7768ffc40c948c7bd0 (plain) (blame)
1
2
3
4
5
6
7
trait A extends Object with {
  def f : Int = 1
}

trait B extends Object with A with {
  override def f : Int = super.f
}