aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr41163.c
blob: c224837837695d12945735cd774e4a11a41d0c9c (plain)
1
2
3
4
5
6
7
8
9
10
struct option {
    void *value;
};
void parse_options (struct option *);
void cmd_grep(void)
{
  struct option options[] = { { &options } };
  parse_options(options);
}