mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 60392ce4c67348dfe05d558fc88f62884300f553
12 lines
187 B
Java
12 lines
187 B
Java
class Main {
|
|
interface I{}
|
|
enum ENNNNN implements I{AAA}
|
|
final class AAAAAA implements I{}
|
|
|
|
public static void test3(I en) {
|
|
switch (en) {
|
|
case AAAA<caret>
|
|
}
|
|
}
|
|
}
|