int test(void) {
  int i;
  int ia[10];

  ? i = ia[2];
  /*
          PUSH     &ia                                 ; push address of zeroth element of array
          PUSH     #2                                  ; AST_Const
          INDEX    4                                   ; (by size of object type 1080)
  Needs PUSHI here to fetch contents at address  ( TOS = *TOS )
          POP      i                                   ; [[typeinfo=1080]]
   */
  return 0;
}
