ref: 6ae6f05f761a36086f80e78c018a77c0e8ee0fbb dir: /tests/execute/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; }