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