description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2611 | Compiler Error C2611 | 11/04/2016 |
|
| 3f2d5253-f24f-4724-83d0-6b2aa6a4e551 |
'token' : illegal following '~' (expected identifier)
The token is not an identifier.
The following sample generates C2611:
// C2611.cpp// compile with: /cclassC { C::~operatorint(); // C2611~C(); // OK };