aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WitherWithAbstract.java
blob: 7cbb1309ea39adc16ef7e6e66ea83dec92dbfa7c (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);
}