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

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