aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t429.scala
blob: eeed4b080a150289793442069802c0cf8c3444a9 (plain) (tree)
1
2
3
4


                       
                    










                                            
object Test {
  abstract class A {
    Console.print("A");
    lazy 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);
  }
}