mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
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>
|
|
}
|
|
}
|
|
}
|