aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/Constructors.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/Constructors.java')
-rw-r--r--test/transform/resource/after-delombok/Constructors.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/Constructors.java b/test/transform/resource/after-delombok/Constructors.java
index d4633dbc..12aa75ab 100644
--- a/test/transform/resource/after-delombok/Constructors.java
+++ b/test/transform/resource/after-delombok/Constructors.java
@@ -28,6 +28,16 @@ class RequiredArgsConstructorStaticName {
return new RequiredArgsConstructorStaticName(x);
}
}
+class RequiredArgsConstructorWithAnnotations {
+ final int x;
+ String name;
+ @java.beans.ConstructorProperties({"x"})
+ @Deprecated
+ @java.lang.SuppressWarnings("all")
+ public RequiredArgsConstructorWithAnnotations(final int x) {
+ this.x = x;
+ }
+}
class AllArgsConstructor1 {
final int x;
String name;