mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
moved to community
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user