Skip Menu |

This queue is for tickets about the PadWalker CPAN distribution.

Report information
The Basics
Id: 48944
Status: new
Priority: 0/
Queue: PadWalker

People
Owner: Nobody in particular
Requestors: tokuhirom+cpan [...] gmail.com
Cc:
AdminCc:

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



Subject: peek_my cannot handle arguments
The following test is failed. use strict; use warnings; use PadWalker qw/peek_my/; use Test::More; sub foo { ${peek_my(1)->{'$x'}} = 'yay'; } { my $x; foo(); is $x, 'yay'; } { foo(my $x); is $x, 'yay'; } done_testing;