aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/DelegateRecursion.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/DelegateRecursion.java')
-rw-r--r--test/transform/resource/after-ecj/DelegateRecursion.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/DelegateRecursion.java b/test/transform/resource/after-ecj/DelegateRecursion.java
new file mode 100644
index 00000000..3d9db9ef
--- /dev/null
+++ b/test/transform/resource/after-ecj/DelegateRecursion.java
@@ -0,0 +1,26 @@
+import lombok.Delegate;
+class DelegateRecursionOuterMost {
+ private final @Delegate DelegateRecursionCenter center = new DelegateRecursionCenter();
+ public @java.lang.SuppressWarnings("all") void innerMostMethod() {
+ this.center.innerMostMethod();
+ }
+ DelegateRecursionOuterMost() {
+ super();
+ }
+}
+class DelegateRecursionCenter {
+ private final @Delegate DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost();
+ public @java.lang.SuppressWarnings("all") void innerMostMethod() {
+ this.inner.innerMostMethod();
+ }
+ DelegateRecursionCenter() {
+ super();
+ }
+}
+class DelegateRecursionInnerMost {
+ DelegateRecursionInnerMost() {
+ super();
+ }
+ public void innerMostMethod() {
+ }
+} \ No newline at end of file