Compiler Error C2371
'identifier' : redefinition; different basic types
The identifier is already declared.
The following sample generates C2371:
// C2371.cpp
int main() {
int i;
float i; // C2371, redefinition
float f; // OK
}
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'identifier' : redefinition; different basic types
The identifier is already declared.
The following sample generates C2371:
// C2371.cpp
int main() {
int i;
float i; // C2371, redefinition
float f; // OK
}