mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 08:21:35 +00:00
13 lines
249 B
Java
13 lines
249 B
Java
//version 8: springframework dep is too new to run on j6
|
|
//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;
|
|
}
|
|
}
|