Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'token' : illegal following '~' (expected identifier)
The token is not an identifier.
The following sample generates C2611:
// C2611.cpp
// compile with: /c
class C {
C::~operator int(); // C2611
~C(); // OK
};