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.
'label' : unreferenced label
The label is defined but never referenced. The compiler ignores the label.
The following sample generates C4102:
// C4102.cpp
// compile with: /W3
int main() {
int a;
test: // C4102, remove the unreferenced label to resolve
a = 1;
}