1 // PR c++/14230 2 3 struct A { 4 A (); 5 A (const A&); 6 A& operator= (const A&); 7 }; 8 9 struct D { 10 A a; 11 }; 12 13 const A& z = D().a; 14