summaryrefslogtreecommitdiff
path: root/test/files/run/t0807.scala
blob: 1e2a26664a61e2ca7d93802640a406f0051ceba2 (plain) (blame)
1
2
3
4
5
trait A
trait B extends A { val x = println("early") }
object Test extends App {
  new B {}
}