# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #59204] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=59204 >
The .trans method appears to be modifying its argument: $ cat x my $x = [1,2,3] => ['a', 'b', 'c']; say $x.perl; say 123.trans($x); say $x.perl; $ ./parrot perl6.pbc x ([1, 2, 3] => ["a", "b", "c"]) abc ([] => []) $ Pm