aboutsummaryrefslogtreecommitdiff
path: root/tests/run/i1144/AB_1.scala
blob: ff37674dbcbd26776d13aaeff6b07b7c508161b1 (plain) (blame)
1
2
3
4
5
6
trait A {
  def x = 3
}
trait B extends A {
  override def x = super.x * 2
}