(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr41163.c
       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