Has anyone else run into this? I using Active State perl 5.6.1 build 626 on Win2K ver 5.00.2195. If I predeclair pointers to two hashes it will merge the entries together? I'd like to use STRICT in my programing but this will pretty much kill it. Does anyone know any workarounds, patches, etc? Did I miss something basic? Below is the test code and its output.
# USING PREDECLARATIONS IT FAILS my $x=""; my $another=""; print "WITH PREDECLS\n"; $x->{"FISH2"} = "FISH2"; $another->{"NONE"}="NONE"; foreach $item (keys %{$x}) { print "ELEMENTS: $item, $x->{$item}\n"; } # NOT USING PREDECLARATIONS IT WORKS print "\n\nWITHOUT PREDECLS\n"; $x2->{"FISH2"} = "FISH2"; $another2->{"NONE"}="NONE"; foreach $item (keys %{$x2}) { print "ELEMENTS: $item, $x2->{$item}\n"; }
Here is the output:
WITH PREDECLS ELEMENTS: NONE, NONE ELEMENTS: FISH2, FISH2 WITHOUT PREDECLS ELEMENTS: FISH2, FISH2

In reply to Active State Perl 5.6.1 build 626 Trashes hashes. by DanNeedles

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.