blob: ecd8658b337908af278d96dbb8821c5bdc39ffa7 [file] [log] [blame]
class I477 {
public static String foo(int in) {
return switch (in) {
case 1 -> "A";
case 2 -> "B";
default -> throw new IllegalStateException("Unknown input " + in);
};
}
public static String foo(int in) {
return switch (in) {
case 1 -> "A";
case 2 -> "B";
default -> "C";
};
}
}