Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible compiler bug in MSVC12 (VS2013) with designated initializer

Using VS2013 Update 2, I've stumbled on some strange error message :

// 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;
}

Both GCC and Clang accept it.

Am I missing something or does this piece of code exposes a compiler bug ?

EDIT : Duplicate: Initializing struct within another struct using designated initializer causes compile error in Visual Studio 2013

like image 853
diapir Avatar asked Jun 06 '14 21:06

diapir


1 Answers

It is a known bug. It is said to be fixed in the next version of MSVC.

EDIT: Unfortunately, the bug is still present in VS14 CTP 4.

EDIT: This bug has been fixed in VS2015 CTP 5.

like image 137
diapir Avatar answered Sep 18 '22 16:09

diapir