'super':這個關鍵詞後面必須接著 '::'
備註
唯一可以遵循 關鍵字 __super 的標記是 ::。
Example
下列範例會產生 C2792:
// C2792.cpp
struct B {
void mf();
};
struct D : B {
void mf() {
__super.(); // C2792
// try the following line instead
// __super::mf();
}
};