blob: 954782bed34f7110dc981f3c192dfb4d25419a43 [file] [log] [blame]
class Test {
int method() {
<selection>try {
if(cond1) return 0;
else if(cond2) return 1;
return 27;
} finally {
doSomething();
}</selection>
return 12;
}
}