make StackOverflow test useful in tails=true build

This commit is contained in:
Joel Dice 2011-01-25 17:13:59 -07:00
parent 3fe9171766
commit 966650f105

View File

@ -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) {