int f(){
  return 0;
}

int g(){
  return 1;
}

int main(){
  int *p;
  
  *p = f()+g(); // two functions returning ints
}
