mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +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>y = y / x;
|
|
foo();</selection>
|
|
} catch (ArithmeticException e) {
|
|
}
|
|
return y;
|
|
}
|
|
|
|
void foo(){ }
|
|
} |