blob: bd8bfa8c5cbc17151a7a1e66434a8305c6c2436d [file] [log] [blame]
class Test {
void m(boolean b) {
int x = 42;
try {
<selection>
if(b) {
x = 23;
throw new Exception();
}
</selection>
} catch(Exception e) {
System.out.println(x);
}
}
}