mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
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
|
|
}
|
|
|