diff options
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/WithNested.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithNested.java b/test/transform/resource/after-delombok/WithNested.java new file mode 100644 index 00000000..27b65577 --- /dev/null +++ b/test/transform/resource/after-delombok/WithNested.java @@ -0,0 +1,13 @@ +public interface WithNested<Z> { + class IAmStaticReally { + final String x; + @java.lang.SuppressWarnings("all") + public IAmStaticReally(final String x) { + this.x = x; + } + @java.lang.SuppressWarnings("all") + public WithNested.IAmStaticReally withX(final String x) { + return this.x == x ? this : new WithNested.IAmStaticReally(x); + } + } +} |