编译器错误 C3530
“auto”不能与其他任何类型说明符一起使用
某个类型说明符与 auto 关键字一起使用。
更正此错误
- 不要在使用 auto 关键字的变量声明中使用类型说明符。
示例
下面的示例会产生 C3530,因为同时用 auto 关键字和 int 类型声明 x 变量,还因为该示例是用 /Zc:auto 编译的。
// C3530.cpp
// Compile with /Zc:auto
int main()
{
auto int x; // C3530
return 0;
}