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


This unexpectedly fails to match the capital A:

    ➜  say "Aa1" ~~ /:i <[a..z0..9]>+/
    「a1」

*Without* the second range in the character class, it works as expected:

    ➜  say "Aa1" ~~ /:i <[a..z]>+/
    「Aa」

(This is perl6 version 2015.09-433-g26617f9 built on MoarVM version 
2015.09-79-gee9fc2b).

Reply via email to