# New Ticket Created by David Farrell # Please include the string: [perl #125384] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=125384 >
When I clone my Perl 6 repo Pod::Perl5, and use it, it runs fine. When I install the module using panda and try to use it, I get an error: "Could not find symbol '&parse-string' in block <unit> at -e:1" Steps to reproduce ------------------ git clone https://github.com/dnmfarrell/Pod-Perl5 cd Pod-Perl5 perl6 -Ilib -MPod::Perl5 -e 'Pod::Perl5::parse-string("=pod\n\n")' panda install ./ perl6 -MPod::Perl5 -e 'Pod::Perl5::parse-string("=pod\n\n")'