cmake/Tests/CompileFeatures/cxx_uniform_initialization.cpp

13 lines
69 B
C++
Raw Normal View History

2016-07-09 11:21:54 +02:00
struct A
{
};
struct B
{
2015-04-27 22:25:09 +02:00
B(A) {}
};
void Func()
{
2016-07-09 11:21:54 +02:00
B b{ A{} };
2015-04-27 22:25:09 +02:00
}