aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/EqualsAndHashCodeAnnotated.java
blob: d672b98299f9ac2b3faf13c87b97db7ba0daf999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//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 {
	}
}