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