“super”:该关键字的后面必须跟“::”
注解
可以跟随关键字 __super 的唯一令牌是 ::。
Example
以下示例生成 C2792:
// C2792.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super.(); // C2792
// try the following line instead
// __super::mf();
}
};