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

9 lines
166 B
Java

// "Replace with 'Math.max()' call" "true"
class Test {
void test(int a, int b) {
/*1*/
/*2*/
/*3*/
int c/*0*/ = (Math.max((a), (b)));
}
}