mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
GitOrigin-RevId: 4bcbf2d43bddca5ded941c2b1497715ff977ca0b
10 lines
171 B
Java
10 lines
171 B
Java
class Test {
|
|
int test(int x) {
|
|
if (x < 0) {
|
|
System.exit(0);
|
|
throw new AssertionError("unreachable");
|
|
}
|
|
System.out.println(x);
|
|
return 5;
|
|
}
|
|
} |