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

11 lines
189 B
Java

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