int 
foo (int a, int b)
{
  return a + b;
}

int a, b;

b = foo (a);
b = foo (a, a, b);
exit;
