# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #62274] # in the subject line of all future correspondence about this issue. # <URL: 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; $ perl6 A.pm Use of uninitialized value $ I'd like for Rakudo to output 42 when running A.pm.