Jens Rieks <[EMAIL PROTECTED]> wrote: > Hi! > I have found a problem with with mmd_dispatch_v_pnp. > The function calls (for an Integer-PMC) Parrot_Integer_multiply_int, which > expects an INTVAL, but a FLOATVAL is passed to it.
I can't reproduce that. new P1, .Integer set P1, 2 new P2, .Undef mul P2, P1, 5.0 print P2 end This calls the inherited C<Parrot_scalar_multiply_float()> function and works. > jens leo