Kompilatorfel C2611

"token" : ogiltigt efter "~" (förväntad identifierare)

Anmärkningar

Token är inte en identifierare.

Example

I följande exempel genereras C2611:

// C2611.cpp
// compile with: /c
class C {
   C::~operator int();   // C2611
   ~C();   // OK
};