blob: 4e269cd75af747f27893557bce5faa63c1cccdfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class DelegateRecursionOuterMost {
private final DelegateRecursionCenter center = new DelegateRecursionCenter();
@java.lang.SuppressWarnings("all")
public void innerMostMethod() {
this.center.innerMostMethod();
}
}
class DelegateRecursionCenter {
private final DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost();
@java.lang.SuppressWarnings("all")
public void innerMostMethod() {
this.inner.innerMostMethod();
}
}
class DelegateRecursionInnerMost {
public void innerMostMethod() {
}
}
|