aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/EqualsAndHashCodeOfAndExcludeWarn.java
blob: 9babf4435e95c0c8763d895a9fe22dc7172e8816 (plain)
1
2
3
4
5
6
7
8
9
10
// skip-compare-contents
@lombok.EqualsAndHashCode(of={"y"})
final class EqualsAndHashCodeWarnOf {
	int x;
}

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