mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-08 12:36:52 +07:00
Add the `default` keyword to the completions after `case`. GitOrigin-RevId: 8e1e05d230a43a11a47d9b55ab89548530ab68b2
21 lines
247 B
Java
21 lines
247 B
Java
|
|
class Main {
|
|
|
|
void f(Object o) {
|
|
switch(o) {
|
|
case Integer i, def<caret>
|
|
}
|
|
}
|
|
|
|
void g(Object o) {
|
|
switch(o) {
|
|
case def<caret>, Integer i
|
|
}
|
|
}
|
|
|
|
void h(Object o) {
|
|
switch(o) {
|
|
case def<caret>
|
|
}
|
|
}
|
|
} |