blob: d86d6044c93e88818ca85ccbe6c8d7a9cd4b44ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//ignore - This test fails, but, fixing it is going to take a long time and we don't have it in the planning. Having a failing test is very annoying for e.g. 'ant test'.
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() {
}
}
|