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


in reply to Re: Less-than-helpful warnings
in thread Less-than-helpful warnings

Certainly not if $a and $b are lexical, which in this case they are. I'm not even seeing any problem if they are global. Did perl have a problem at some point where the previous values didn't get restored after the sort?

Update: Sorry, I misunderstood that you were warning against using a sort BLOCK in the lexical scope of $a or $b. If you try, perl will die with an error "Can't use "my $[ab]" in sort comparison".

Replies are listed 'Best First'.
Re: Re: Re: Less-than-helpful warnings
by jZed (Prior) on Dec 11, 2003 at 03:53 UTC
    To quote from perldoc -f sort: "If you're using strict, you must not declare $a and $b as lexicals. They are package globals."