blob: 8e67722b960cc8abc9001d4742a42d8b9b53deb7 [file] [log] [blame]
void f(int n)
{
bugcauser:
if (n != 0)
f(n-1);
return;
}