# New Ticket Created by  Sam S. 
# Please include the string:  [perl #126622]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126622 >


This works:

    say "abc".comb».uc;


This works:

    say "abc"
        . comb.uc;

But this fails with "Missing « or »    ------>   . comb».⏏uc;":

    say "abc"
        . comb».uc;

Reply via email to