int a, b;

int z (void)
{
  int arr[10];
  int i;
  if (a < 0) return a;

  for (i = 0; i < 10; i++)
    arr[i] = i;

  return arr[9];  
}
