# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64882] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64882 >
<cspencer> rakudo: multi foo(Int $x, Bool :$flag, *...@vals) { say "bar 1" }; foo(1) <p6eval> rakudo 0d5515: OUTPUT«bar 1» <cspencer> rakudo: multi foo(Int $x, Bool :$flag, *...@vals) { say "bar 1" }; foo(1, 2, 3, 4, 5) <p6eval> rakudo 0d5515: OUTPUT«No applicable candidates found to dispatch to for 'foo' <cspencer> can anybody explain why dispatch fails on the second? <pmichaud> bug. * masak submits