ref: a4a8aee18eb929f1e24bc5fe0ee22ce7919750c8 dir: /tests/0050-inits.c/
int x = 10; struct S {int a; int *p;}; struct S s = { .p = &x, .a = 1}; int main() { if(s.a != 1) return 1; if(*s.p != 10) return 2; return 0; }