Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix double-container bug with 'as'.
  • Loading branch information
jnthn committed Sep 25, 2013
1 parent 7cede9d commit 74bb712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/rakudo/Binder.java
Expand Up @@ -364,7 +364,7 @@ else if (desiredNative == 0) {
Ops.invokeDirect(tc, coerceMeth,
Ops.invocantCallSite,
new Object[] { decontValue });
decontValue = Ops.result_o(tc.curFrame);
decontValue = Ops.decont(Ops.result_o(tc.curFrame), tc);
}
else {
if (error != null)
Expand Down

0 comments on commit 74bb712

Please sign in to comment.