
void f() {
}

int main() {
  int x=0;
  
  if (x) {
  } else {
    f();
  }
}
