mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 11:35:12 +07:00
Clean tests GitOrigin-RevId: cb3ca829cabc9ab6e96f3ccb77d213896606c93e
12 lines
206 B
Java
12 lines
206 B
Java
record R(int x, int y){}
|
|
class Test{
|
|
void foo(Object o) {
|
|
switch(o){
|
|
case R(int w, int c):
|
|
System.out.println(c<caret>);
|
|
break;
|
|
default -> System.out.println()
|
|
}
|
|
}
|
|
}
|