rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20050801-2.c

13 lines
118 B
C

__inline int f(int i)
{
struct {
int t[i];
} t;
return sizeof(t.t[i--]);
}
int g(int i)
{
return f(i);
}