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


syntax highlighted by Code2HTML, v. 0.9.1