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