OSDN Git Service

2007-01-18 Hui-May Chang <hm.chang@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000606-1.c
1 typedef struct _foo foo;
2 extern foo bar;
3 struct _foo {
4   int a;
5 };
6
7 void baz(void)
8 {
9   bar.a = 0;
10 }