Files
openide/java/java-tests/testData/codeInsight/completeStatement/CaseColon.java
Tagir Valeev 01db701bec [java-completion] Complete statement: use arrow instead of colon in rule switch (IDEA-309553)
GitOrigin-RevId: 74a10e28de1dfb1667bb4a29688ab4c710b73bf4
2023-01-11 16:33:04 +00:00

9 lines
135 B
Java

class Foo {
void foo(String a) {
switch (a) {
case "x":break;
case "asdf<caret>"
}
}
}