コンパイラ エラー C3452
リスト引数メンバーは定数ではありません
定数 (コンパイル時に評価できる値) を必要としていた属性に引数が渡されました。
例
次の例では C3452 が生成されます。
// C3452.cpp
// compile with: /c
int i;
[module( name="mod", type=dll, custom={i} ) ]; // C3452
// try the following line instead
// [module( name="mod", type=dll, custom={"a"} ) ];