Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
work around rakudo regression
  • Loading branch information
FROGGS committed Feb 23, 2015
1 parent 2542f9c commit e2ad5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Inline.pm
Expand Up @@ -7,7 +7,7 @@ multi trait_mod:<is>(Routine $r, :$inline!) is export(:DEFAULT, :traits) {
my @args;

# only positional arguments so far
@args.push( .type ) for $r.signature.params;
@args.push( nqp::create(.type) ) for $r.signature.params;

my $code = $r( |@args );

Expand Down

0 comments on commit e2ad5f9

Please sign in to comment.