class P { static void foo() { foo(); bazz(0); } private static void bazz(int k) { bazz(k); bazz(k); } }