rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20000606-1.c

11 lines
100 B
C

typedef struct _foo foo;
extern foo bar;
struct _foo {
int a;
};
void baz(void)
{
bar.a = 0;
}