aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t429.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/t429.scala')
-rw-r--r--tests/run/t429.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/run/t429.scala b/tests/run/t429.scala
new file mode 100644
index 000000000..e62a6b307
--- /dev/null
+++ b/tests/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);
+ }
+}