编译器错误 C2372

“identifier”:重定义;不同的间接寻址类型

已使用不同的派生类型定义标识符。

以下示例生成 C2372:

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