class C { boolean test(boolean b) { boolean f = false; try { if (b) throw new RuntimeException(); f = true; } catch (RuntimeException e) { throw e; } finally { } return f; } }