aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithNested.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/WithNested.java')
-rw-r--r--test/transform/resource/after-ecj/WithNested.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/WithNested.java b/test/transform/resource/after-ecj/WithNested.java
new file mode 100644
index 00000000..55f6edb2
--- /dev/null
+++ b/test/transform/resource/after-ecj/WithNested.java
@@ -0,0 +1,12 @@
+public interface WithNested<Z> {
+ @lombok.RequiredArgsConstructor class IAmStaticReally {
+ final @lombok.With String x;
+ public @java.lang.SuppressWarnings("all") WithNested.IAmStaticReally withX(final String x) {
+ return ((this.x == x) ? this : new WithNested.IAmStaticReally(x));
+ }
+ public @java.lang.SuppressWarnings("all") IAmStaticReally(final String x) {
+ super();
+ this.x = x;
+ }
+ }
+}