summaryrefslogtreecommitdiff
path: root/test/pending/run/preinits.scala
blob: 8de43b62ea108f0463e87403441ff00e4b867e40 (plain) (blame)
1
2
3
4
5
6
trait A { val x: Int; println("A") }
trait B extends { override val x = 1 } with A { println("B") }
trait C extends { override val x = 2 } with A
object Test extends B with C with Application {
  println(x)
}