mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 11:07:44 +07:00
- fix tests GitOrigin-RevId: 3aca2ccbd6b0fd15a8510174b7a23b19e6efc971
14 lines
214 B
Java
14 lines
214 B
Java
class Main {
|
|
enum Numbers{ONE, TWO}
|
|
|
|
private static void testEnum2(Object r2) {
|
|
switch (r2) {
|
|
case Numbers.ONE:
|
|
break;
|
|
default:
|
|
break;
|
|
case null, defaul<caret>
|
|
}
|
|
}
|
|
}
|