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