aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WitherLegacyStar.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/WitherLegacyStar.java')
-rw-r--r--test/transform/resource/after-ecj/WitherLegacyStar.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/WitherLegacyStar.java b/test/transform/resource/after-ecj/WitherLegacyStar.java
new file mode 100644
index 00000000..7aeaa969
--- /dev/null
+++ b/test/transform/resource/after-ecj/WitherLegacyStar.java
@@ -0,0 +1,11 @@
+import lombok.experimental.*;
+class WitherLegacyStar {
+ @Wither int i;
+ WitherLegacyStar(int i) {
+ super();
+ this.i = i;
+ }
+ public @java.lang.SuppressWarnings("all") WitherLegacyStar withI(final int i) {
+ return ((this.i == i) ? this : new WitherLegacyStar(i));
+ }
+} \ No newline at end of file