# New Ticket Created by Daniel Carrera
# Please include the string: [perl #66300]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=66300 >
To reproduce the error:
"hello".flip.trans("aeiou" => "AEIOU")
=> too few arguments passed (2) - 3 params expected
The methods .flip an .trans work fine individually, but not together.
Both of the following variations have the same problem:
"hello".flip().trans("aeiou" => "AEIOU")
"hello".flip.trans(("aeiou" => "AEIOU"))
However, the following works:
my $s = "hello".flip();
$s.trans("aeiou" => "AEIOU");
Daniel.