# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #117985]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=117985 >
<lizmat> r: my %a= (a => 1, b => 2); say %a<c>:p # shouldn't this be Nil ?
<camelia> rakudo 2a04f2: OUTPUT«"c" => Any»
<masak> lizmat: yeah, think so.
* masak submits rakudobug
<masak> r: my %a= (a => 1, b => 2); say %a<a b c>:p
<camelia> rakudo 2a04f2: OUTPUT«"a" => 1 "b" => 2 »
<masak> weird.
<lizmat> different candidates ?
<jnthn> yeah
<lizmat> single key handled by multi method postcircumfix:<{ }>(\SELF:
Mu $key, :$p!)
<lizmat> multi key handled by multi method postcircumfix:<{ }>(\SELF:
Positional \key, :$p!)