mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
13 lines
267 B
Java
13 lines
267 B
Java
// "Remove unreachable branches" "true"
|
|
class Test {
|
|
void test(R r) {
|
|
int i = r.i();
|
|
String str = r.s();
|
|
System.out.println(i);
|
|
i = 42;
|
|
System.out.println(str + i);
|
|
}
|
|
|
|
record R(int i, String s, double ignored) {
|
|
}
|
|
} |