1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/58714 // { dg-do compile { target c++11 } } struct X { X& operator=(const X&) = delete; X& operator=(X&& ) = default; }; void f(bool t) { X a, b; *(t ? &a : &b) = X(); (t ? a : b) = X(); }