blob: b66c023c7cd86f204216922fcfe98ca5986983d8 [file] [log] [blame]
public class X {
int f(int a) {
if (a == 0) {
return 1;
} else {
return 2;
}
}
}