blob: 436e6f3b04229e0ef6d58d22113179dc606d3d46 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import lombok.experimental.Wither;
class WitherPlain {
@lombok.experimental.Wither int i;
@Wither final int foo;
WitherPlain(int i, int foo) {
this.i = i;
this.foo = foo;
}
}
|