Index: vm/jitrino/src/jet/bcproc.cpp =================================================================== --- vm/jitrino/src/jet/bcproc.cpp (revision 555908) +++ vm/jitrino/src/jet/bcproc.cpp (working copy) @@ -429,7 +429,10 @@ else { meth = resolve_virtual_method(m_compileHandle, m_klass, jinst.op0); } - gen_invoke(opkod, meth, 0, args, retType); + // if class to call to is available, but method is not found in the class + // meth here will be equal to NULL and lazy resolution call will be + // generated in gen_invoke + gen_invoke(opkod, meth, cpIndex, args, retType); return; } switch(jinst.opcode) {