From 262ee3a852f278f97b083a05376de0eab96c805d Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 11 Dec 2010 14:57:06 +0000 Subject: When was the last time -Xcheckinit was run? It ... When was the last time -Xcheckinit was run? It must have been a long time. All these changes are to address bugs revealed by -Xcheckinit, mostly in test cases, some in the compiler. I'm guessing the partest -Xcheckinit runs are hanging the first time they run into a failure, so if it starts "working" again after this commit don't get too confident. No review. --- test/files/run/bug429.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/files/run/bug429.scala') diff --git a/test/files/run/bug429.scala b/test/files/run/bug429.scala index b2cc8128c0..e62a6b307b 100644 --- a/test/files/run/bug429.scala +++ b/test/files/run/bug429.scala @@ -6,8 +6,8 @@ object Test { } class B extends A { Console.print("B"); - val z = 0; - val x = 4 + z + lazy val z = 0; + lazy val x = 4 + z } def main (args: Array[String]): Unit = { Console.print((new B).y); -- cgit v1.2.3