mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
GitOrigin-RevId: 0cf0aa8d5875e2bc52dfaa96c1259ccb314bbd96
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(){ }
|
|
} |