Associative array of associative arrays

In reply to cgales:

class testing;
  
  typedef int array1[];
  
  typedef array1 array2[int];
  
  array2 array3[int];
  
  function new;
    array3[0[0]] = new[8];
  endfunction
  
  
class :testing