mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 00:29:58 +07:00
GitOrigin-RevId: 60392ce4c67348dfe05d558fc88f62884300f553
12 lines
191 B
Java
12 lines
191 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 AAAAAA<caret>
|
|
}
|
|
}
|
|
}
|