Condividi tramite


Errore del compilatore C2611

'token': non valido dopo '~' (identificatore previsto)

Osservazioni:

Il token non è un identificatore.

Example

L'esempio seguente genera l'errore C2611:

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