Files
openide/java/java-tests/testData/codeInsight/completion/normal/CompleteIfInSwitchRule_after.java
T
2022-09-19 16:43:17 +00:00

10 lines
115 B
Java

class Main {
void test(int x) {
switch(x) {
case 1 -> {
if (<caret>)
}
}
}
}