Skip to content

Commit

Permalink
Fix Inline::Perl6 tests failing since 61473e4
Browse files Browse the repository at this point in the history
Seems like the itemization provided by array assignment is needed for the
return values to make it back to Perl 5.
  • Loading branch information
niner committed Oct 16, 2016
1 parent 45acfcf commit 431344a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Inline/Perl5.pm6
Expand Up @@ -1437,7 +1437,7 @@ method BUILD(*%args) {
return Pointer;
}
}
self.p6_to_p5($p6obj."$name"(|self.p5_array_to_p6_array($args)).list);
self.p6_to_p5(@ = $p6obj."$name"(|self.p5_array_to_p6_array($args)));
}
&!call_method does Perl5Caller;

Expand Down

0 comments on commit 431344a

Please sign in to comment.