int test(void) {
  struct sb {  int b[5]; };
  struct sa {  struct sb a; };
  struct sa s;
  int b;
  ? s.a.b[4] = 1;
  b = s.a.b[4];
  return 0;
}
