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

10 lines
250 B
Java

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