mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
9 lines
149 B
Java
9 lines
149 B
Java
record R(int x, int y){}
|
|
class Test{
|
|
void foo(Object o) {
|
|
if (o instanceof R(int w, int c)){
|
|
System.out.println(w<caret>);
|
|
}
|
|
}
|
|
}
|