# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #69492]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=69492 >
<masak> rakudo: sub foo(:$) {}; say &foo.signature.perl
<p6eval> rakudo c8181a: OUTPUT«:(Any $?)»
<moritz_> that's wrong :-)
<masak> why?
<moritz_> it's not a positional
<masak> oh, right.
* masak submits rakudobug
<Matt-W> but it should be a named optional
<Matt-W> :$?
<moritz_> right
<masak> rakudo: sub foo(:$a) {}; say &foo.signature.perl
<p6eval> rakudo c8181a: OUTPUT«:(Any :$a?)»
<masak> it gets that one right.