Udostępnij za pomocą


Błąd kompilatora C2611

"token" : niedozwolone po '~' (oczekiwany identyfikator)

Uwagi

Token nie jest identyfikatorem.

Example

Poniższy przykład generuje C2611:

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