mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
a2ebb4ce36
The `test.javac6` job causes a ton of errors because many tests use java8+ features. Marking them off as java8+ targeted only.
14 lines
306 B
Java
14 lines
306 B
Java
//version 8:
|
|
//CONF: checkerframework = 4.0
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
import lombok.With;
|
|
|
|
@Data @AllArgsConstructor @Accessors(chain = true)
|
|
class CheckerFrameworkBasic {
|
|
@With private final int x;
|
|
private final int y;
|
|
private int z;
|
|
}
|