1 // This triggers a failure when compiling from bytecode (only) with 20000519
2 
3 public class PR232B
4 {
5   private static Object lock = new Object();
6   private static PR232B instance = null;
7 
a()8   public void a()
9   {
10     synchronized(lock)
11     {
12       instance = new PR232B();
13     }
14   }
15 };
16