aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WitherWithAbstract.java
blob: 90fd6448a01dc1b82f06073ffa4003ec4f549697 (plain)
1
2
3
4
5
6
7
abstract class WitherWithAbstract {
  @lombok.experimental.Wither String foo;
  WitherWithAbstract() {
    super();
  }
  public abstract @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") WitherWithAbstract withFoo(final String foo);
}