# New Ticket Created by "Mark E. Shoulson" # Please include the string: [perl #120753] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=120753 >
When singletons are used alongside ranges in character classes in regexes, the singletons seem to be ignored: "Z" ~~ /<[A..MZ]>/ returns Nil; it should match. It does not matter if the range is first or second, and "Z"~~/<[A..M Z..Z]>/ does match. I know this used to work in (rather old) versions of rakudo, but not in the latest git build (0bf3de5f2). ~mark