Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 477 Bytes

compiler-error-c2374.md

File metadata and controls

23 lines (19 loc) · 477 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2374
Compiler Error C2374
11/04/2016
C2374
C2374
73b51965-e91c-4e21-9732-f71c1449d22e

Compiler Error C2374

'identifier' : redefinition; multiple initialization

The identifier is initialized more than once.

The following sample generates C2374:

// C2374.cpp
// compile with: /c
int i = 0;
int i = 1;   // C2374
int j = 1;   // OK