mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
9 lines
189 B
Java
9 lines
189 B
Java
// "Remove unreachable branches" "true"
|
|
class Test {
|
|
void test(R r) {
|
|
System.out.println(r.s() + r.i());
|
|
System.out.println(r);
|
|
}
|
|
|
|
record R(int i, String s) {}
|
|
} |