mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
IDEA would support latest preview only GitOrigin-RevId: 6609e80acced9e1be07880c14de239f75afcc78b
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
|
|
} |