共用方式為


編譯器錯誤 C2378

'identifier' : 重複定義; 符號無法以 typedef 多載

識別項已重新定義為 typedef

下列範例會產生 C2378:

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