mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
11 lines
226 B
Java
11 lines
226 B
Java
public class Test {
|
|
public int test(int x) {
|
|
int y = 42;
|
|
try {
|
|
<selection>y = y + x;
|
|
y = y / x;</selection>
|
|
} catch (ArithmeticException e) {
|
|
}
|
|
return y;
|
|
}
|
|
} |