diff options
Diffstat (limited to 'test/transform/resource/after-ecj/ValuePlain.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValuePlain.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ValuePlain.java b/test/transform/resource/after-ecj/ValuePlain.java index 442a63ac..0ff7369e 100644 --- a/test/transform/resource/after-ecj/ValuePlain.java +++ b/test/transform/resource/after-ecj/ValuePlain.java @@ -38,6 +38,11 @@ final @lombok.Value class Value1 { this.x = x; this.name = name; } + private @java.lang.SuppressWarnings("all") Value1() { + super(); + this.x = 0; + this.name = null; + } } @Value @lombok.experimental.NonFinal class Value2 { public final int x; @@ -83,6 +88,11 @@ final @lombok.Value class Value1 { this.x = x; this.name = name; } + private @java.lang.SuppressWarnings("all") Value2() { + super(); + this.x = 0; + this.name = null; + } } final @Value class Value3 { private @lombok.experimental.NonFinal int x; @@ -120,4 +130,8 @@ final @Value class Value3 { this.x = x; this.y = y; } + private @java.lang.SuppressWarnings("all") Value3() { + super(); + this.y = 0; + } } |