aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SynchronizedNameNoSuchField.java
blob: 7c78b9455539868f838b2883e5ac7bd639b1f723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class SynchronizedNameNoSuchField {
  private Object read = new Object();
  private static Object READ = new Object();
  <clinit>() {
  }
  SynchronizedNameNoSuchField() {
    super();
  }
  @lombok.Synchronized("write") void test2() {
    System.out.println("two");
  }
}