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