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