From bcfe76ee680852c66781882d70ac02bd76e09ac9 Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Tue, 2 Nov 2010 00:15:16 +0000 Subject: Added separate bitmaps for private and transien... Added separate bitmaps for private and transient lazy vals. Closes #3038, #1573. Review by dragos. I had to fix a couple of initialization issues that checkinit forced me to do and that weren't a problem before because the bitmap was serialized even for @transitive. For that I needed to change the setters in checkinit so that they also update the bitmap. --- test/files/run/t3895.scala | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/files/run/t3895.scala') diff --git a/test/files/run/t3895.scala b/test/files/run/t3895.scala index dfc4a34a32..9028e0a08a 100644 --- a/test/files/run/t3895.scala +++ b/test/files/run/t3895.scala @@ -20,6 +20,12 @@ class B extends A{ val b = 12 } +trait T { + private final val a = false +} + +class Impl extends T + object Test { def main(args: Array[String]) { -- cgit v1.2.3