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.
20 lines
444 B
Java
20 lines
444 B
Java
//version 8:
|
|
import java.lang.annotation.*;
|
|
|
|
@lombok.EqualsAndHashCode
|
|
class EqualsAndHashCodeAnnotated {
|
|
@Annotated int primitive;
|
|
@Annotated Object object;
|
|
|
|
int @Annotated [] primitiveValues;
|
|
int @Annotated [] @Annotated [] morePrimitiveValues;
|
|
|
|
Integer @Annotated [] objectValues;
|
|
Integer @Annotated [] @Annotated [] moreObjectValues;
|
|
|
|
@Target(ElementType.TYPE_USE)
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
@interface Annotated {
|
|
}
|
|
}
|