mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 02:25:56 +07:00
GitOrigin-RevId: f633fb8552cf65e718954c98325c1445ca433461
12 lines
156 B
Java
12 lines
156 B
Java
class Main {
|
|
interface I{}
|
|
enum ENNN implements I{AAA}
|
|
|
|
public static void test3(ENNN en) {
|
|
switch (en) {
|
|
case ENNN.AA<caret>
|
|
}
|
|
}
|
|
}
|
|
|