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