Files
openide/java/java-tests/testData/codeInsight/completion/normal/CompleteThrowInSwitchRule.java
Tagir Valeev 269d17c850 [java-completion] IDEA-302003 Complete statement keywords after switch rule arrow
GitOrigin-RevId: 2a9f1b3deb68145bbe4fbfa42e45432e6281a41d
2022-09-19 16:43:17 +00:00

8 lines
90 B
Java

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