blob: a8f598f17d46d1fd9c18373c986b2bd60cb76c45 [file] [log] [blame]
// 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();
}