共用方式為


編譯器錯誤 C2372

'identifier': redefinition; different types of indirection

標識碼已經以不同的衍生類型定義。

下列範例會產生 C2372:

// C2372.cpp
// compile with: /c
extern int *fp;
extern int fp[];   // C2372
extern int fp2[];   // OK