Compiler Error C2045
'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
}
Tento prehliadač už nie je podporovaný.
Inovujte na Microsoft Edge a využívajte najnovšie funkcie, aktualizácie zabezpečenia a technickú podporu.
'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
}