ref: c02ebef74e491de7e34a681d23bbcde1ee08f5b5 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; }