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