# create a reference to an anon array my $aref = [1..100]; # take a reference to one of its elements my $elem_ref = \$aref->[50]; # drop the array reference undef $aref; # is the anon array still gobbling up memory in a zombie state?