mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
13 lines
241 B
Java
13 lines
241 B
Java
public class Test {
|
|
public int test(int x) {
|
|
int y = 42;
|
|
try {
|
|
<selection>foo();
|
|
y = y / x;</selection>
|
|
} catch (ArithmeticException e) {
|
|
}
|
|
return y;
|
|
}
|
|
|
|
void foo() {}
|
|
} |