summaryrefslogblamecommitdiff
path: root/test/files/run/bug429.scala
blob: b2cc8128c051750dd5c4b5955f895e2b1ab95475 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                            
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");
    val z = 0;
    val x = 4 + z
  }
  def main (args: Array[String]): Unit = {
    Console.print((new B).y);
  }
}