Sure. I should've given examples to begin with... Here's a sample:

use strict; use warnings; use Data::Dumper; my %hash = (0 => foo(0), 3 => foo(3), 7 => foo(7)); print Dumper(\%hash); sub foo { return unless $_[0]; return $_[0] * 2; };

Now what one probably expected is (0 => undef, 3=>6, 7=>14). However, the real output would be (0 => 3, 6 => 7, 14 => undef) which is kinda weird. This is because hash assignment forces list context, so return; returns empty list which wreaks havoc on the rest of the hash. It can be fixed by arbitrary scalar foo(...) or by returning undef explicitly (perlcritic would complain about it though).


In reply to Re^2: Why is "odd number of elements in hash assignment" warning and not error? by Dallaylaen
in thread Why is "odd number of elements in hash assignment" warning and not error? by Dallaylaen

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.