mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-11 00:06:57 +07:00
11 lines
248 B
Java
11 lines
248 B
Java
// "Remove unreachable branches" "true"
|
|
class Test {
|
|
void test(R r) {
|
|
R rec = r;
|
|
rec = new R(42, "hello");
|
|
System.out.println(rec.s() + rec.i());
|
|
System.out.println(rec);
|
|
}
|
|
|
|
record R(int i, String s) {}
|
|
} |