[issue #2369] [reproduction-test] inner types not detected as static if in interface/enum.

This commit is contained in:
Reinier Zwitserloot
2020-02-14 14:50:38 +01:00
parent 62d2d73712
commit a6fb86359a
3 changed files with 32 additions and 0 deletions
@@ -0,0 +1,7 @@
public interface WithNested<Z> {
@lombok.RequiredArgsConstructor
class IAmStaticReally {
@lombok.With final String x;
}
}