编译器错误 C3554

“decltype”不能与任何其他类型说明符组合

不可用任何类型说明符来限定 decltype() 关键字。 例如,下述代码片段产生错误 C3554。

int x;
unsigned decltype(x); // C3554