aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000606-1.c
blob: 93977c0931a0a00bff3a67a297743472d84f9bfb (plain)
1
2
3
4
5
6
7
8
9
10
typedef struct _foo foo;
extern foo bar;
struct _foo {
  int a;
};

void baz(void)
{
  bar.a = 0;
}