blob: e8f847ee2bcf0e43e150f0cbd91b692d84315b05 [file] [log] [blame]
public class X {
int f(int a) {
if (a == 0) {
return 0;
}
<spot>else</spot> {
if (a == 1) {
return 2;
}
else {
return 18;
}
}
}
}