/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package p; import edu.illinois.keshmesh.annotations.EntryPoint; public class A { @EntryPoint public static void main(String args[]) { new A().m(); } private void m() { /*[LCK02J,01,p.A.class*/synchronized (p.A.class) { System.out.println("replace by p.A.class"); }/*]*/ } }