blob: 3ac6d666495d3e2fb118f0e84838c8e45ef1cb4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import lombok.Delegate;
class DelegateRecursionOuterMost {
@Delegate
private final DelegateRecursionCenter center = new DelegateRecursionCenter();
}
class DelegateRecursionCenter {
@Delegate
private final DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost();
}
class DelegateRecursionInnerMost {
public void innerMostMethod() {
}
}
|