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