mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
Clean tests GitOrigin-RevId: ca1094fd7060754a17d1a18c68c66fed4bc0bbb4
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 <caret>w, int c)){
|
|
System.out.println(w);
|
|
}
|
|
}
|
|
}
|