modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/20000412-5.c (about) 1 int main( void ) { 2 struct { 3 int node; 4 int type; 5 } lastglob[1] = { { 0 , 1 } }; 6 7 if (lastglob[0].node != 0 || lastglob[0].type != 1) 8 abort (); 9 exit (0); 10 } 11