summaryrefslogblamecommitdiff
path: root/test/files/run/t429.scala
blob: e62a6b307bc9397ee8c1f2ca46da63b17c60c5ba (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                            

                      




                                          
object Test {
  abstract class A {
    Console.print("A");
    val x: Int;
    val y: Int = {Console.print("y"); x + 1}
  }
  class B extends A {
    Console.print("B");
    lazy val z = 0;
    lazy val x = 4 + z
  }
  def main (args: Array[String]): Unit = {
    Console.print((new B).y);
  }
}