# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60150] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60150 >
Rakudo r32151 is only able to call &-sigil subs if they have not been initialized with "my". $ ./perl6 -e '&b = &say; &b(5)' # works 5 $ ./perl6 -e 'my &b = &say; &b(5)' # fails Lexical 'b' not found [...]