in reply to Re: Deallocating HASH pointer
in thread Deallocating HASH pointer

You'll get a warning later if you try to use it.
Not necessarily:
#line 1 use strict; use warnings; our $tree; $tree = {}; $$tree{autov} = "ivify"; warn %$tree; # vs. $tree = undef; $$tree{autov} = "ivify"; warn %$tree;