gpt4 book ai didi

c - 具有指定初始化程序的 MSVC12 (VS2013) 中可能存在编译器错误

转载 作者:太空狗 更新时间:2023-10-29 16:44:49 25 4
gpt4 key购买 nike

使用 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 都接受它。

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

编辑:重复:Initializing struct within another struct using designated initializer causes compile error in Visual Studio 2013

最佳答案

这是一个known bug .据说在下一版本的 MSVC 中已修复。

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

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

关于c - 具有指定初始化程序的 MSVC12 (VS2013) 中可能存在编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24090739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com