class C { int f(boolean b) { int i = 0; try { if (b) throw new RuntimeException(); } finally { i = 1; } return i; } }