modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/20090207-1.c (about) 1 int foo(int i) 2 { 3 int a[32]; 4 a[1] = 3; 5 a[0] = 1; 6 a[i] = 2; 7 return a[0]; 8 } 9 extern void abort (void); 10 int main() 11 { 12 if (foo (0) != 2 13 || foo (1) != 1) 14 abort (); 15 return 0; 16 }