11

使用 VS2013 Update 2,我偶然发现了一些奇怪的错误消息:

// test.c
int main(void)
{
    struct foo {
        int i;
        float f;
    };

    struct bar {
        unsigned u;
        struct foo foo;
        double d;
    };

    struct foo some_foo = {
        .i = 1,
        .f = 2.0
    };

    struct bar some_bar = {
        .u = 3,

// error C2440 : 'initializing' : cannot convert from 'foo' to 'int'
        .foo = some_foo,

        .d = 4.0
    };

// Works fine
    some_bar.foo = some_foo;

    return 0;
}

GCC 和 Clang 都接受它。

我是否遗漏了什么或者这段代码是否暴露了编译器错误?

编辑:重复:使用指定的初始化程序在另一个结构中初始化结构会导致 Visual Studio 2013 中的编译错误

4

1 回答 1

9

这是一个已知的错误。据说在下一版本的 MSVC 中修复。

编辑:不幸的是,该错误仍然存​​在于 VS14 CTP 4 中。

编辑:此错误已在 VS2015 CTP 5 中修复。

于 2014-06-06T21:35:11.533 回答