mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
- offer classes and interfaces - offer `default` after `case null,` GitOrigin-RevId: f1d0567efeafcd5320db88089bab7eb1dbe17b9f
12 lines
178 B
Java
12 lines
178 B
Java
class Main {
|
|
enum Numbers{ONE, TWO}
|
|
|
|
private static void testEnum2(Object r2) {
|
|
switch (r2) {
|
|
case Numbers.ONE:
|
|
break;
|
|
case null, <caret>
|
|
}
|
|
}
|
|
}
|