in reply to Re: Argument list item alias-ing
in thread Argument list item alias-ing
This error should occurs because you're 'aliasing' $_ to $_[0], which essentially equates to both pointing to the same scalar value e.gsub subname { local *_=\$_[0]; s///; } subname("String"); Modification of a read-only value attempted at - line 3.
sub { print "\$_[0]: ",\$_[0], $/; local *_= \$_[0]; print "\$_: ",*main::_{SCALAR}, $/; s///; }->("foo"); __output__ $_[0]: SCALAR(0x8107ec8) $_: SCALAR(0x8107ec8) Modification of a read-only value attempted at - line 5.
_________
broquaint
|
|---|