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

8 lines
103 B
C

struct S { int i; };
extern struct S x[];
char *bar (const struct S *);
void foo (void)
{
bar (x);
}