mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 72f8e7f6c9080db7cb0b89c0ed876eb949171e8f
14 lines
280 B
Java
14 lines
280 B
Java
// "Remove unreachable branches" "false"
|
|
class X {
|
|
int x(E e) {
|
|
// We cannot do anything here (yet)
|
|
return switch (E.AA) {
|
|
case A<caret>A:
|
|
System.out.println(9);
|
|
default: break 0;
|
|
};
|
|
}
|
|
}
|
|
enum E {
|
|
AA,BB
|
|
} |