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