[fixes #3761] Update annotation value index

This commit is contained in:
Rawi01
2024-10-19 11:49:29 +02:00
parent 4aa58fb211
commit 5caea32510
5 changed files with 29 additions and 4 deletions
@@ -0,0 +1,14 @@
// skip-compare-contents
@lombok.EqualsAndHashCode(of={"x", Const.A})
final class EqualsAndHashCodeErrorOf {
int x;
}
@lombok.EqualsAndHashCode(exclude={"x", Const.A})
final class EqualsAndHashCodeErrorExclude {
int x;
}
class Const {
static final String A = "A";
}