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

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