Compiler Error C2745
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2745.
token' : this token cannot be converted to an identifier
Identifiers must be comprised of legal characters.
The following sample generates C2745:
// C2745.cpp
// compile with: /clr
int main() {
int __identifier([)); // C2745
}
Show: