blob: e5048d17ed2076bf35831a114cc2bed526d449e3 [file] [log] [blame]
struct A
{
};
struct B
{
B(A) {}
};
void Func()
{
B b{ A{} };
}