# New Ticket Created by Jan-Olof Hendig # Please include the string: [perl #129258] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=129258 >
# tested with This is Rakudo version 2016.08.1-169-g15532db built on MoarVM version 2016.08-43-g3d04391 implementing Perl 6.c. # the problem, compare result between Str.trans and Cool.trans. Both should return the same result: dogbert@dogbert-VirtualBox ~/.rakudobrew/moar-nom $ perl6 -e 'say "123123".trans("23" => "", :complement)' 2323 dogbert@dogbert-VirtualBox ~/.rakudobrew/moar-nom $ perl6 -e 'say 123123.trans("23" => "", :complement)' 11 /dogbert17