Teilen über


Compilerfehler C2792

'super': Auf dieses Schlüsselwort muss "::" folgen.

Bemerkungen

Das einzige Token, das dem Schlüsselwort __super folgen kann, ist ::.

Example

Im folgenden Beispiel wird C2792 generiert:

// C2792.cpp
struct B {
   void mf();
};

struct D : B {
   void mf() {
      __super.();   // C2792

      // try the following line instead
      // __super::mf();
   }
};