mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 07:55:31 +07:00
GitOrigin-RevId: b45993878b906f3a5209ad0b968b43f8d872dbbf
14 lines
248 B
Java
14 lines
248 B
Java
// "Replace with 'switch' expression" "false"
|
|
|
|
public class EnhancedSwitchIntentionBug {
|
|
public static void main(String[] args) {
|
|
int x;
|
|
switch<caret> (args[0]) {
|
|
case "1":
|
|
case "2":
|
|
case "3":
|
|
default:
|
|
}
|
|
}
|
|
}
|