aboutsummaryrefslogblamecommitdiff
path: root/tests/neg/over.scala
blob: 80ce7d09f4c39e96301bfe116e9474e806e15393 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                    







                      
trait T {
  def x = 1
}

class C extends T {

  val x = 2
  override val y = 2

}

class D extends T {

  def x(): String = ""

}