Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/changeToSimilarKeywordFix/afterDefaultSwitch3.java
Mikhail Pyltsin 48b384354e [java-highlighting] IDEA-378781 Quick fixes for typos in keywords
- more cases

GitOrigin-RevId: 56f497789cb02e5c867053056458bbfdc20d3ac5
2025-09-30 16:20:30 +00:00

11 lines
218 B
Java

// "Fix the typo 'defaul' to 'default'" "true-preview"
public class Test {
public static void test(List<String> list) {
switch (1) {
case 1->{
System.out.println();
}
default
}
}
}