Files
openide/java/java-tests/testData/inspection/redundantLabeledSwitchRuleCodeBlockFix/afterConstInExpression.java
T

9 lines
231 B
Java

// "Unwrap code block of labeled rule" "LIKE_UNUSED_SYMBOL"
class C {
String foo(int n) {
return switch (n) {
case 1 -> /*1*/ /*2*/ /*3*/ /*4*/ /*5*/ "a"; /*6*/
default -> "b";
};
}
}