* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr41163.c
blobc224837837695d12945735cd774e4a11a41d0c9c
1 struct option {
2 void *value;
3 };
4 void parse_options (struct option *);
5 void cmd_grep(void)
7 struct option options[] = { { &options } };
8 parse_options(options);