Files
lombok/test/transform/resource/before/WithPlain.java
T
Reinier Zwitserloot 3f0fec1872 [issue #788] Add more nullity annotations where relevant
(chainable setters, static constructors, builder stuff)
2020-01-31 15:58:19 +01:00

12 lines
192 B
Java

//CONF: lombok.addNullAnnotations = spring
import lombok.With;
class WithPlain {
@lombok.With int i;
@With final int foo;
WithPlain(int i, int foo) {
this.i = i;
this.foo = foo;
}
}