编译器错误 C2377

“identifier”:重定义;typedef 不能由任何其他符号重载

typedef 标识符被重新定义。

以下示例生成 C2377:

// C2377.cpp
// compile with: /c
typedef int i;
int i;   // C2377
int j;   // OK