モジュール属性が指定されていません
module 属性は、属性を使用するどのプログラムにも必要ですが、Visual C++ 属性を使用するプログラムでこの属性が使用されていません。
次の例では C3174 が生成されます。
// C3174.cpp
// C3174 expected
// uncomment the following line to resolve this C3174
// [module(name="x")];
[export]
struct S
{
int i;
};
int main()
{
}