Skip Menu |

This queue is for tickets about the Syntax-Keyword-Dynamically CPAN distribution.

Report information
The Basics
Id: 132545
Status: resolved
Priority: 0/
Queue: Syntax-Keyword-Dynamically

People
Owner: Nobody in particular
Requestors: leonerd-cpan [...] leonerd.org.uk
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.04
Fixed in: 0.06



Subject: dynamically HELEM moves the SV out of the way
Behaves like `local`: use Syntax::Keyword::Dynamically; my %h = ( key => "orig" ); my $sref = \$h{key}; { dynamically $h{key} = "new"; print "inside $$sref " } print "outside $$sref" Results: inside orig outside orig Expected: inside new outside orig -- Paul Evans