this should not be here
[cparser] / parsetest / should_warn / write_only6.c
1 struct X { int i[10]; int j; struct X* next; } gX;
2
3 extern int rand(void);
4
5 int main(void)
6 {
7         for (struct X* px = &gX; rand() % 2 == 0; px = px->next)
8         {}
9
10         return 0;
11 }