blob: d3187a65b2dd0d2ed2fb36f37c8dd80703a4ef39 [file] [log] [blame]
// PR c++/20103
// { dg-options "" }
struct A
{
A(const A&);
};
struct B
{
A a;
};
void foo(B);
void bar(A &x)
{
foo((B){x});
}