blob: 515d9d302ef551f058701d2c7aa5801321d1d733 [file] [log] [blame]
void abort(void);
static inline int bar(void) { return 1; }
static int mem[3];
static int foo(int x)
{
if (x != 0)
return x;
mem[x++] = foo(bar());
if (x != 1)
abort();
return 0;
}
int main()
{
foo(0);
return 0;
}