Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/deleteSwitchLabel/beforeUnwrapExpression4.java
2023-07-14 16:14:45 +00:00

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
}