From 7af752602af4cab91bb6929c9a9b4d93babd629c Mon Sep 17 00:00:00 2001 From: Rawi01 Date: Sun, 30 Jan 2022 00:22:36 +0100 Subject: [fixes #3097] Update inner class type when creating a static class --- test/transform/resource/after-ecj/UtilityClass.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/transform/resource/after-ecj') 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(); () { } static void someMethod() { System.out.println(); + new InnerClass(); + new InnerStaticClass(); } private @java.lang.SuppressWarnings("all") UtilityClass() { super(); -- cgit