'label' : unreferenced label
The label is defined but never referenced. The compiler ignores the label. The following sample generates C4102:
void main() { int a; test: // C4102, remove the unreferenced label to resolve a = 1; }