Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 566 Bytes

compiler-warning-level-3-c4102.md

File metadata and controls

27 lines (21 loc) · 566 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 3) C4102
Compiler Warning (level 3) C4102
11/04/2016
C4102
C4102
349f308a-daf3-48c6-bd53-6c38b73f8880

Compiler Warning (level 3) C4102

'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;
}