Skip to content

Commit

Permalink
BIND value itself should also be raw!
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Oct 19, 2020
1 parent 54eb431 commit d713e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.e/array_multislice.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ multi sub postcircumfix:<[; ]>(\SELF, @indices, Mu \assignee) is raw {

# This candidate must be provided because binding to a multi-level
# hash is codegenned this way.
multi sub postcircumfix:<[; ]>(\SELF, @indices, :$BIND!) is raw {
multi sub postcircumfix:<[; ]>(\SELF, @indices, :$BIND! is raw) is raw {
my int $dims = @indices.elems; # reifies
my $indices := nqp::getattr(@indices,List,'$!reified');

Expand Down

0 comments on commit d713e45

Please sign in to comment.