Compiler Error C3118
'interface' : interfaces do not support virtual inheritance
You tried to virtually inherit from an interface. For example,
// C3118.cpp
__interface I1 {
};
__interface I2 : virtual I1 { // C3118
};
generates this error.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
'interface' : interfaces do not support virtual inheritance
You tried to virtually inherit from an interface. For example,
// C3118.cpp
__interface I1 {
};
__interface I2 : virtual I1 { // C3118
};
generates this error.