编译器错误 C2633

“identifier”:“inline”是构造函数的唯一合法存储类

构造函数声明为非内联存储类。

下面的示例生成 C2633:

// C2633.cpp
// compile with: /c
class C {
   extern C();   // C2633, not inline
   inline C();   // OK
};