int test(void) {
  int i;

  struct st {
    int ia[10];
    int i;
    int *ip;
  }
  struct st *stp;

  stp->i = i;
  return 0;
}
