Delen via


Compilerfout C3654

'tekst' : syntaxisfout in expliciete overschrijving

Opmerkingen

Een onverwachte tekenreeks was in een expliciete overschrijding. Voor meer informatie, zie Expliciete overschrijvingen.

Example

In het volgende voorbeeld wordt C3654 gegenereerd:

// C3654.cpp
// compile with: /clr /c
public ref struct B {
   virtual void f() = 0;
   virtual void g() = 0;
   virtual void h() = 0;
};

public ref struct Q : B {
   virtual void f() = B::f, 3 {}   // C3654
   // try the following line instead
   // virtual void g() = B::g, B::h {}
};