[perl #75136] return value of multi declaration should be just one candidate.

2010-07-16 Thread jn...@jnthn.net via RT
On Sun May 16 21:11:42 2010, le...@wall.org wrote: > When I run: > > multi x (Int $x) {...} > (multi x (Str $x) {...})>>.candidates>>.say > > It outputs: > x > x > > (note there are two x's). The declaration of the second multi is returning > the multisub with both candidates, rather than just

[perl #75136] return value of multi declaration should be just one candidate.

2010-05-17 Thread via RT
# New Ticket Created by Lewis Wall # Please include the string: [perl #75136] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75136 > When I run: multi x (Int $x) {...} (multi x (Str $x) {...})>>.candidates>>.say It output