'interface' : interfaces do not support virtual inheritance
You tried to virtually inherit from an interface. For example,
__interface I1 { }; __interface I2 : virtual I1 { };
generates this error.