mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
8e0a546003
GitOrigin-RevId: 828b51e578364351368a3bfa5456c5f58b6235f8
14 lines
285 B
Java
14 lines
285 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);
|
|
case default: break 0;
|
|
};
|
|
}
|
|
}
|
|
enum E {
|
|
AA,BB
|
|
} |