Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 476 Bytes

compiler-error-c2611.md

File metadata and controls

24 lines (20 loc) · 476 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2611
Compiler Error C2611
11/04/2016
C2611
C2611
3f2d5253-f24f-4724-83d0-6b2aa6a4e551

Compiler Error C2611

'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 };
close