[perl #62274] [TODO] Setting of caller module's $_ via $CALLER::_

2010-07-27 Thread Will Coleda via RT
On Tue Jan 13 01:12:43 2009, masak wrote: > Here's a minimal use case. > > $ cat A.pm > use B; > > say $_; > $ cat B.pm > $CALLER::_ = 42; > $ perl6 A.pm > Use of uninitialized value > $ > > I'd like for Rakudo to output 42 when running A.pm. This now generates: Null PMC access in getprop()

[perl #62274] [TODO] Setting of caller module's $_ via $CALLER::_

2009-01-13 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #62274] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62274 > Here's a minimal use case. $ cat A.pm use B; say $_; $ cat B.pm $CALLER::_ = 42; $ per