mirror of
https://github.com/corda/corda.git
synced 2025-01-21 03:55:00 +00:00
make StackOverflow test useful in tails=true build
This commit is contained in:
parent
3fe9171766
commit
966650f105
@ -1,14 +1,14 @@
|
|||||||
public class StackOverflow {
|
public class StackOverflow {
|
||||||
private static void test1() {
|
private static int test1() {
|
||||||
test1();
|
return test1() + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void test2() {
|
private static int test2() {
|
||||||
test3();
|
return test3() + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void test3() {
|
private static int test3() {
|
||||||
test2();
|
return test2() + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
Loading…
Reference in New Issue
Block a user