aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/EqualsAndHashCodeWithOnParam.java
blob: 160dfdc6a57606ed4636e13a7b1d66b6d1b36f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
@interface Nullable {
}

@lombok.EqualsAndHashCode(onParam=@_{@Nullable})
class EqualsAndHashCodeWithOnParam {
	int x;
	boolean[] y;
	Object[] z;
	String a;
	String b;
}