private static void CallVirtOpcodeGenericInterface()
        {
            Console.WriteLine("Testing callvirt opcode for calling DIM on generic interface");
            I1 <string> c1 = new C1();

            if (c1.GetItemType() != typeof(string))
            {
                throw new Exception("CallVirtOpcodeGenericInterface failed");
            }
        }