编译器错误 C2791

非法使用“super”:“class”没有任何基类

在没有任何基类的类的成员函数的上下文中使用了关键字 super

以下示例生成 C2791:

// C2791.cpp
struct D {
   void mf() {
      __super::mf();   // C2791
   }
};