extern int f();

void g() {
  int y = 14;
  int x = f();
}

int main() {
  g();
  return 0;
}
