aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ConstructorsWithAccessors.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before/ConstructorsWithAccessors.java')
-rw-r--r--test/transform/resource/before/ConstructorsWithAccessors.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/transform/resource/before/ConstructorsWithAccessors.java b/test/transform/resource/before/ConstructorsWithAccessors.java
new file mode 100644
index 00000000..d242317d
--- /dev/null
+++ b/test/transform/resource/before/ConstructorsWithAccessors.java
@@ -0,0 +1,6 @@
+@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class ConstructorsWithAccessors {
+ int plower;
+ int pUpper;
+ int _huh;
+ int __huh2;
+}