mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-10 07:07:01 +07:00
10 lines
229 B
Java
10 lines
229 B
Java
// "Remove unreachable branches" "true"
|
|
class Test {
|
|
void test(Object obj) {
|
|
if (!(obj instanceof R)) return;
|
|
R r = (R) obj;
|
|
System.out.println(r.i() + r.s());
|
|
}
|
|
|
|
record R(int i, String s) {}
|
|
} |