mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
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
|
|
} |