blob: 6c6c395cb81bdb3cec435a14d2284318ccaa1ae4 [file] [log] [blame]
class Test {
int method() {
<selection>try {
if(cond1) return 0;
else if(cond2) return 1;
System.out.println("Text");
} finally {
doSomething();
}</selection>
return 12;
}
}