or download this
# a hash holding a reference to the array
my %hash;
...
# now try to access without intermediate $h_aref
#print 'array length is ' . scalar(@$hash{'aref'}) . "\n"; # error
#print 'array length is ' . scalar(@$$hash{'aref'}) . "\n"; # error