编译器错误 C2745

“token”:此标记不能转换为标识符

标识符必须由合法字符组成。

以下示例生成 C2745:

// C2745.cpp
// compile with: /clr
int main() {
   int __identifier([));   // C2745
}