Compiler Error C2147
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 C2147.
syntax error : 'identifier' is a new keyword
An identifier was used that is now a reserved keyword in the language.
The following sample generates C2147:
// C2147.cpp
// compile with: /clr
int main() {
int gcnew = 0; // C2147
int i = 0; // OK
}
Show: