int test(int i, int *ip, int ia[]) {
  int j;
  j = i;
  j = *ip;
  j = ip[0];
  j = ia[0];
  return 0;
}
