Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapSwitchRuleStatements/beforeEmpty.java
Tagir Valeev da9c5dd049 Wrap switch rule statements into block fix (IDEA-202664, IDEA-207059)
GitOrigin-RevId: 184ebf34bd15c46f54685cf06521cee1d903b056
2019-07-02 06:52:16 +03:00

8 lines
106 B
Java

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