aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20030716-1.c
blob: ceb4b6171e9596fa4181d6209228f5e3d124e85b (plain)
1
2
3
4
5
6
7
void baz(int i);

void foo(int i, int A[i+1])
{
    int j=A[i];
    void bar() { baz(A[i]); }
}