id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,lang,patch,platform
1030,long sub invocation with named parameters,coke,,"See [http://rt.perl.org/rt3/Ticket/Display.html?id=46457 Original RT]

:named syntax in verbose subroutine calls does not work in PIR. e.g.:

{{{
.sub main
.local pmc foo
foo = get_global 'foo'

foo('x' => 1, 'y' => 2)
foo(1 :named('x'), 2 :named('y'))

.begin_call
.set_arg 1 :named('x')
.set_arg 2 :named('y')
.call foo
.end_call
.end

.sub foo
.param int i :named('y')
.param int j :named('x')
say i
say j
.end
}}}

Generates the error:
{{{
error:imcc:Named parameter with more than one name.

        in file 'foo.pir' line 10

}}}",bug,closed,normal,,none,trunk,medium,fixed,,,,,
