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); }