Description
It would be very helpful if a warning were issued when the => operator is used in the map EXPR,LIST syntax, in order to avoid writing this code:
map $_ => false, @subplot
which is definitely not the same as
map { $_ => false} @subplot
which is what I really meant.