blob: f398c31b5af5b87d35f95da8c9a1f52948119f77 [file] [log] [blame]
public class Test {
int method() {
try {
System.out.println("Text");
return 0;
} finally {
<selection>System.out.println("!!!");
return 1;</selection>
}
}
}