'identifier' の前の型 (戻り値の型を持つコンストラクター、または現在のクラスの不正な定義?)
注釈
コンストラクターは、値を返すか、またはクラス名を再定義しています。
Example
次の例では C2380 が生成されます。
// C2380.cpp
// compile with: /c
class C {
public:
int C(); // C2380, specifies an int return
int C; // C2380, redefinition of i
C(); // OK
};