summaryrefslogtreecommitdiff
path: root/test/files/pos/michel4.scala
blob: 2eabe6160516d6ee83cddfa9f680cd0aca1f5a7e (plain) (blame)
1
2
3
4
5
6
7
class A() {
  val f : Int = 2
}

class B() extends A() with {
  override val f : Int = super.f
}