class C { void f(boolean b, String s) { try { s = "a"; if (b) throw new RuntimeException(); s = "b"; } finally { System.out.println(s); } } }