Files
lombok/test/transform/resource/before/WitherPlain.java
T
2012-08-06 21:26:55 +02:00

11 lines
185 B
Java

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;
}
}