mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
d18240cbd6
We now check for stack overflow in the JIT build as well as the interpreted build, throwing a StackOverflowError if the limit (currently hard-coded to 64KB, but should be easy to make configurable) is exceeded.
30 lines
491 B
Java
30 lines
491 B
Java
public class StackOverflow {
|
|
private static void test1() {
|
|
test1();
|
|
}
|
|
|
|
private static void test2() {
|
|
test3();
|
|
}
|
|
|
|
private static void test3() {
|
|
test2();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
try {
|
|
test1();
|
|
throw new RuntimeException();
|
|
} catch (StackOverflowError e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
try {
|
|
test2();
|
|
throw new RuntimeException();
|
|
} catch (StackOverflowError e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|