aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/EqualsAndHashCodeOfAndExclude.java
blob: b8ba21fbc3fca1eb14ec22e6e9d699601155c3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
@lombok.EqualsAndHashCode(of={"x"})
final class EqualsAndHashCodeOf {
	int x;
	int y;
}

@lombok.EqualsAndHashCode(exclude={"y"})
final class EqualsAndHashCodeExclude {
	int x;
	int y;
}