Skip Menu |

This queue is for tickets about the Lexical-Alias CPAN distribution.

Report information
The Basics
Id: 8324
Status: new
Priority: 0/
Queue: Lexical-Alias

People
Owner: Nobody in particular
Requestors: bzm [...] 2bz.de
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Lexical::Alias 0.04 did not work under the debugger
Hi, I use Lexical::Alias in conjunction with the perl debugger. But inside the debugger, the Aliases do not work. Here is a small testcase. use Lexical::Alias qw/alias_h alias_s/; my ( %z, %h ); alias_h( %h, %z ); %h = ( a => 1 ); use Data::Dumper; print Dumper( \%z ); $z{a} = 3; print Dumper( \%h ); my ( $s, $z ); alias_s $s, $z; $z = 1; print $s; output from perl -d $VAR1 = {}; $VAR1 = { 'a' => 1 }; and without the -d $VAR1 = { 'a' => 1 }; $VAR1 = { 'a' => 3 }; 1 I use perl 5.8.4 with Lexical::Alias 0.04 on x86 and PPC.