http://www.perlmonks.org?node_id=958676


in reply to map problem

This is another instance of the problem that a pair of curlies can stand for an anonymous subroutine or a hash reference. You can disambiguate with a semicolon in the block:

my %y = map {; "prefix_$_" => 1 } qw(a b c);

It's more of a design limitation than a bug in perl or in you :-)