# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #62006] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62006 >
Rakudo r34997 exhibits a few problems related to mentioning or numifying protoobjects. $ ./perl6 -e 'Match' Null PMC access in get_integer() [...] mbpro-2:perl6 masak$ ./perl6 -e '+Match' Null PMC access in cmp() [...] $ perl6 -e 'class Foo {}; +Foo' get_number() not implemented in class 'Foo' [...] The last one could safely be made to have a default of 0, IMHO. As for the first two, a Null PMC access is a Parrot implementation detail, and should ideally never be the output of a Perl 6 program.