Files
2022-05-02 15:35:49 +00:00

16 lines
308 B
Java

// "Replace with old style 'switch' statement" "true"
import java.util.*;
class SwitchExpressionMigration {
private static void m(int x) {
int y;
switch (x) {
case 1:
y = 1;
break;
default:
y = 0;
break;
}
}
}