While increasing the code coverage for the Integer PMC unit tests, I discovered what appeared to be a bug in one of the multiply routines that is called when using `mul $P0, $P1&#39;.<br><br>The i_multiply VTABLE method is supposed to perform an in-place multiply on the first operand, but when used with the BigInt and Complex PMCs as the second operand, no multiplication is performed. Note that this works fine when using another PMC, i.e. the Float PMC, as the second operand.<br>

<br>Attached is a short snippet of new tests I wrote, all using the same mul opcode. Note that one of the three works correctly, while the other two do not.<br>