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