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

10 lines
239 B
Java

// "Unwrap code block of labeled rule" "LIKE_UNUSED_SYMBOL"
class C {
void foo(int n) {
String s;
switch (n) {
case 1 -> System.out.println(n);
default -> System.out.println();
};
}
}