mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 84169987b62cb0a1d8bac137f0044ff89e51a7d9
14 lines
135 B
Java
14 lines
135 B
Java
class A extends Base{
|
|
void foo(){
|
|
B x = null;
|
|
switch(x){
|
|
case GOO -> <caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
enum B{
|
|
FOO, BAR, GOO
|
|
}
|
|
|