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/t1524.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/run/t1524.scala') diff --git a/test/files/run/t1524.scala b/test/files/run/t1524.scala index 4f6c65d052..3b06afdbfd 100644 --- a/test/files/run/t1524.scala +++ b/test/files/run/t1524.scala @@ -1,6 +1,6 @@ object Test extends Application { - val buf = new scala.collection.mutable.ArrayBuffer[String] { override val initialSize = 0 } + val buf = new scala.collection.mutable.ArrayBuffer[String](0) buf += "initial" buf += "second" println(buf.head) -- cgit v1.2.3