Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapSwitchRuleStatements/afterEmpty.java
T
2019-07-02 06:52:16 +03:00

9 lines
113 B
Java

// "Create block" "true"
class X {
void foo(int i) {
switch(i) {
default -> {
}
}
}
}