(I tried adding this comment about a month ago, but failed hard. Thus another
try.)
As expressed by perlpilot++ and some others, having
say "asdfEnd" ~~ /:ratchet [ xyz | .+! ] End /;
say "asdfEnd" ~~ /:ratchet [ xyz || .+! ] End /;
say "asdfEnd" ~~ /:ratchet [ .+! ] End /;
all fail might also
As expressed by perlpilot++ and some others, having
say "asdfEnd" ~~ /:ratchet [ xyz | .+! ] End /;
say "asdfEnd" ~~ /:ratchet [ xyz || .+! ] End /;
say "asdfEnd" ~~ /:ratchet [ .+! ] End /;
all fail might also be a way to harmonize the behavior.
# New Ticket Created by Patrick Zimmermann
# Please include the string: [perl #123934]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123934 >
say "asdfEnd" ~~ /:ratchet [ xyz | .+! ] End /;
=> Nil
I woul