blob: caf14d89c2931a18b11526e30dea205f58a3ba06 [file] [log] [blame]
// PR c++/14173
struct A;
void foo(const A&);
struct A
{
A(const A&);
};
struct B
{
A a;
A bar() { return a; }
};