mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-19 12:23:54 +00:00
Added tests for delegating recursively: issue 305
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user