mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
11 lines
223 B
Java
11 lines
223 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();
|
|
break;
|
|
default
|
|
}
|
|
}
|
|
} |