Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 503 Bytes

compiler-error-c2378.md

File metadata and controls

23 lines (19 loc) · 503 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2378
Compiler Error C2378
11/04/2016
C2378
C2378
507a91c6-ca72-48df-b3a4-2cf931c86806

Compiler Error C2378

'identifier' : redefinition; symbol cannot be overloaded with a typedef

The identifier was redefined as a typedef.

The following sample generates C2378:

// C2378.cpp
// compile with: /c
int i;
typedef int i;   // C2378
typedef int b;   // OK