diff options
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/UtilityClass.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/UtilityClass.java b/test/transform/resource/after-ecj/UtilityClass.java index 656c0184..1db3d540 100644 --- a/test/transform/resource/after-ecj/UtilityClass.java +++ b/test/transform/resource/after-ecj/UtilityClass.java @@ -5,11 +5,19 @@ final @lombok.experimental.UtilityClass class UtilityClass { super(); } } + protected static class InnerStaticClass { + private String innerInnerMember; + protected InnerStaticClass() { + super(); + } + } private static long someField = System.currentTimeMillis(); <clinit>() { } static void someMethod() { System.out.println(); + new InnerClass(); + new InnerStaticClass(); } private @java.lang.SuppressWarnings("all") UtilityClass() { super(); |