aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WithPlain.java
blob: 1b2a19c48e7805d3c40a652fe0ad0ec4686308dd (plain)
1
2
3
4
5
6
7
8
9
10
import lombok.With;
class WithPlain {
	@lombok.With int i;
	@With final int foo;
	
	WithPlain(int i, int foo) {
		this.i = i;
		this.foo = foo;
	}
}