modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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