cmake/Tests/CompileFeatures/cxx_uniform_initialization.cpp
2016-07-09 11:21:54 +02:00

13 lines
69 B
C++

struct A
{
};
struct B
{
B(A) {}
};
void Func()
{
B b{ A{} };
}