mirror of
https://github.com/tiennm99/lombok.git
synced 2026-07-17 14:16:43 +00:00
Added more tests, one of which tests usage of .getX() in toString, equals, and hashCode, which isn't fully working yet, so this test still fails.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import lombok.Getter;
|
||||
import lombok.AccessLevel;
|
||||
|
||||
class MultiFieldGetter {
|
||||
@Getter(AccessLevel.PROTECTED) int x, y;
|
||||
}
|
||||
|
||||
@Getter
|
||||
class MultiFieldGetter2 {
|
||||
@Getter(AccessLevel.PACKAGE) int x, y;
|
||||
}
|
||||
Reference in New Issue
Block a user