blob: 55d4af482f2d87cec01a71f73e74d45fdd422e20 [file] [log] [blame]
struct S { int i; };
extern struct S x[];
char *bar (const struct S *);
void foo (void)
{
bar (x);
}