Files
openide/java/java-tests/testData/inspection/duplicateBranchesInEnhancedSwitch/CaseLabelsExpressionDefaultFirst.java
2019-07-02 06:52:16 +03:00

13 lines
278 B
Java

class C {
void test(int n) {
String s = switch (n) {
default:
case 1:
yield "a";
case 2:
yield "b";
case 3:
<weak_warning descr="Branch in 'switch' is a duplicate of the default branch">yield "a";</weak_warning>
};
}
}