aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WitherLegacyStar.java
blob: 7aeaa9699ddf0aee9b099870e51801a1755b5074 (plain)
1
2
3
4
5
6
7
8
9
10
11
import lombok.experimental.*;
class WitherLegacyStar {
  @Wither int i;
  WitherLegacyStar(int i) {
    super();
    this.i = i;
  }
  public @java.lang.SuppressWarnings("all") WitherLegacyStar withI(final int i) {
    return ((this.i == i) ? this : new WitherLegacyStar(i));
  }
}