aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WitherWithAbstract.java
blob: de53630d3d29ce32e73c524f632c6c6cadc28749 (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") @lombok.Generated WitherWithAbstract withFoo(final String foo);
}