コンパイラ エラー C3887
'var' : リテラル データ メンバーの初期化子は定数式でなければなりません
リテラル データ メンバーは、定数式を使用してのみ初期化できます。
次の例では C3887 が生成されます。
// C3887.cpp
// compile with: /clr
ref struct Y1 {
static int i = 9;
literal
int staticConst = i; // C3887
};
考えられる解決方法:
// C3887b.cpp
// compile with: /clr /c
ref struct Y1 {
literal
int staticConst = 9;
};