编译器错误 C2378

“identifier”:重定义;符号不能使用 typedef 重载

标识符已重定义为 typedef

下面的示例生成 C2378:

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