# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #57862] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=57862 >
r30183: $ ./perl6 -e 'grammar A { token b { c } }; "c" ~~ A::b' # works $ ./perl6 -e 'grammar A { token b { <c> } }; "c" ~~ A::b' # fails Unable to find regex 'c' Null PMC access in invoke() [...] To be clear, the bug is not about the failure itself (which is expected), but about the Null PMC access that follows it.