mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 17:20:55 +07:00
21 lines
401 B
Java
21 lines
401 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
import java.io.IOException;
|
|
|
|
class TestIdea939 {
|
|
public boolean test() throws IOException {<caret>
|
|
try {
|
|
return geta();
|
|
} catch (IOException e) {
|
|
throw new RuntimeException();
|
|
} finally {
|
|
geta();
|
|
}
|
|
}
|
|
|
|
private boolean geta() throws IOException {
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|