20010824-1.c   [plain text]


void f(int n)
{
bugcauser:
  if (n != 0)
    f(n-1);
  return;
}