Files

11 lines
244 B
Java

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