mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
17 lines
243 B
Java
17 lines
243 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
public class a {
|
|
void f(int i) throws Exception {<caret>
|
|
i = 5;
|
|
try {
|
|
f(i);
|
|
} catch (Exception e) {
|
|
i = 0;
|
|
}
|
|
finally {
|
|
i = 9;
|
|
}
|
|
|
|
|
|
}
|
|
} |