aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20011130-1.c
blob: 55d4af482f2d87cec01a71f73e74d45fdd422e20 (plain)
1
2
3
4
5
6
7
struct S { int i; };
extern struct S x[];
char *bar (const struct S *);
void foo (void)
{
  bar (x);
}