aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ClassNamedAfterGetter.java
blob: fdb6f1228de4edc5c4022cb6392f5a5fd48a4e63 (plain)
1
2
3
4
5
6
7
8
9
class GetFoo {
  private @lombok.Getter int foo;
  GetFoo() {
    super();
  }
  public @java.lang.SuppressWarnings("all") int getFoo() {
    return this.foo;
  }
}