Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
'identifier' : redefinition; symbol cannot be overloaded with a typedef
Remarks
The identifier was redefined as a typedef.
Example
The following example generates C2378:
// C2378.cpp
// compile with: /c
int i;
typedef int i; // C2378
typedef int b; // OK