summaryrefslogtreecommitdiff
path: root/test/files/run/t429.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t429.scala')
-rw-r--r--test/files/run/t429.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t429.scala b/test/files/run/t429.scala
new file mode 100644
index 0000000000..e62a6b307b
--- /dev/null
+++ b/test/files/run/t429.scala
@@ -0,0 +1,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");
+ lazy val z = 0;
+ lazy val x = 4 + z
+ }
+ def main (args: Array[String]): Unit = {
+ Console.print((new B).y);
+ }
+}