# New Ticket Created by [email protected] # Please include the string: [perl #117775] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=117775 >
package Foo {
our $msg;
our sub talk { say $msg }
}
$Foo::msg = "hello";
Foo::talk; # expecting "hello"
Output:
* Niecza: "Hello" (this seems OK)
* rakudo: "(Any)" (this seems like a bug to me)
