mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 14:30:49 +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 w, int c)){
|
|
System.out.println(w<caret>);
|
|
}
|
|
}
|
|
}
|