# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #118467]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=118467 >
<masak> rn: multi foo(:$d!, *@f) {}; multi foo(*@f) { say "works" }; foo() #OK
<camelia> rakudo b2072f, niecza v24-75-g480a062: OUTPUT«works»
<masak> rn: multi foo(*@f, :$d!) {}; multi foo(*@f) { say "works" }; foo() #OK
<camelia> niecza v24-75-g480a062: OUTPUT«works»
<camelia> ..rakudo b2072f: OUTPUT«Ambiguous call to 'foo'; these
signatures all match::(*@f, :d(:$d)!):(*@f) [...]»
* masak submits rakudobug
Niecza has it right both times.