Files
2022-01-31 10:13:14 +00:00

11 lines
194 B
Java

// "Replace with 'Math.min()' call" "true"
class Test {
void test(int a, int b, String s) {
int c = switch (s) {
case "foo" -> {
yield Math.min(b, a);
}
};
}
}