mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 02:25:27 +00:00
15 lines
354 B
Java
15 lines
354 B
Java
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() {
|
|
}
|
|
} |