aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WitherPlain.java
blob: 7f931217038e097d9ac2450bdb1536ea41fbbc9d (plain)
1
2
3
4
5
6
7
8
import lombok.experimental.Wither;
class WitherPlain {
	@lombok.experimental.Wither int i;
	@Wither final int foo;
	
	WitherPlain(int i, int foo) {
	}
}