mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 17:10:44 +07:00
Review ID: IDEA-CR-65670 GitOrigin-RevId: 398643ecdfb38801b87d85cb26e99d0ebebf8f5e
14 lines
132 B
Java
14 lines
132 B
Java
class A extends Base{
|
|
void foo(){
|
|
B x = null;
|
|
switch(x){
|
|
case GOO:<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
enum B{
|
|
FOO, BAR, GOO
|
|
}
|
|
|