diff options
Diffstat (limited to 'test/lombok/resource/after/GetterAlreadyExists.java')
-rw-r--r-- | test/lombok/resource/after/GetterAlreadyExists.java | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/test/lombok/resource/after/GetterAlreadyExists.java b/test/lombok/resource/after/GetterAlreadyExists.java index 152cb372..fce1ba41 100644 --- a/test/lombok/resource/after/GetterAlreadyExists.java +++ b/test/lombok/resource/after/GetterAlreadyExists.java @@ -63,4 +63,70 @@ class Getter9 { boolean getFoo() { return false; } +} +class Getter10 { + boolean foo; + static boolean hasFoo() { + return false; + } +} +class Getter11 { + boolean foo; + static boolean isFoo() { + return false; + } +} +class Getter12 { + boolean foo; + static boolean getFoo() { + return false; + } +} +class Getter13 { + String foo; + static boolean hasFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter14 { + String foo; + static boolean isFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter15 { + String foo; + static boolean getFoo() { + return false; + } +} +class Getter16 { + String foo; + static String hasFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter17 { + String foo; + static String isFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter18 { + String foo; + static String getFoo() { + return false; + } }
\ No newline at end of file |