Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedVariable/afterSwitchExpr.java
T
2020-04-01 12:31:42 +00:00

8 lines
137 B
Java

// "Remove local variable 'i'" "true"
public class Main {
int test(String s) {
return switch(s) {
default -> 1;
}
}
}