Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier' : label redefined
The label appears before multiple statements in the same function.
The following sample generates C2045:
// C2045.cpp
int main() {
label: {
}
goto label;
label: {} // C2045
}