6_5_arrow_on_non_pointer.c (81B)
1 int test_main(void) { 2 struct S { 3 int v; 4 } s; 5 s.v = 0; 6 return s->v; 7 }