mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +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 {
|
||||
private static void test1() {
|
||||
test1();
|
||||
private static int test1() {
|
||||
return test1() + 1;
|
||||
}
|
||||
|
||||
private static void test2() {
|
||||
test3();
|
||||
private static int test2() {
|
||||
return test3() + 1;
|
||||
}
|
||||
|
||||
private static void test3() {
|
||||
test2();
|
||||
private static int test3() {
|
||||
return test2() + 1;
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
Loading…
Reference in New Issue
Block a user