aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/DelegateRecursion.java
blob: 3d9db9ef8133c65c90adfc37ada3bfa6731c4d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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() {
  }
}