6_5_28_arrow.c (97B)
1 int test_main(void) { 2 struct S { 3 int v; 4 } s = {42}; 5 struct S* p = &s; 6 return p->v; 7 }