blob: b283e3a69be63c9d27ae1611bd494254c5e98a4a [file] [log] [blame]
// PR c++/14230
struct A {
A ();
A (const A&);
A& operator= (const A&);
};
struct D {
A a;
};
const A& z = D().a;