mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
9 lines
202 B
Java
9 lines
202 B
Java
// "Apply all 'Replace with unnamed pattern' fixes in file" "true"
|
|
public class Test {
|
|
record R(int x, int y) {}
|
|
void test(Object obj) {
|
|
if (obj instanceof R(int <caret>a, int b)) {
|
|
|
|
}
|
|
}
|
|
} |