aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterOnMethodErrors.java
blob: 16c625b54004749f9e86f8af13fda8fea1e881ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class PlaceFillerToMakeSurePositionIsRelevant {
  PlaceFillerToMakeSurePositionIsRelevant() {
    super();
  }
}
@lombok.Getter() class GetterOnMethodErrors {
  private int test;
  GetterOnMethodErrors() {
    super();
  }
  public @java.lang.SuppressWarnings("all") int getTest() {
    return this.test;
  }
}