1*11be35a1SLionel Sambuc /* gcc: variable array initializer */ foo(int i)2*11be35a1SLionel Sambuc void foo(int i) 3*11be35a1SLionel Sambuc { 4*11be35a1SLionel Sambuc int array[i]; 5*11be35a1SLionel Sambuc while (i--) 6*11be35a1SLionel Sambuc foo(array[i] = 0); 7*11be35a1SLionel Sambuc } 8