aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t429.scala
blob: 411d199ee1e47acb4ae1bb4e385c74cc603144b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
    println()
  }
}