blob: 9c5a8cae8915fe3d425cbe9d7b599e81b725aa23 [file] [log] [blame]
// 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;
}
}