mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
[fixes #3761] Update annotation value index
This commit is contained in:
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user