modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr41163.c (about) 1 struct option { 2 void *value; 3 }; 4 void parse_options (struct option *); 5 void cmd_grep(void) 6 { 7 struct option options[] = { { &options } }; 8 parse_options(options); 9 } 10