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

7 lines
137 B
Java

// "Replace with 'Math.max()' call" "true"
class Test {
void test(int a, int b, int c) {
int d = a > b ? Math.max(a, c) : b;
}
}