aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv-cond1.C
blob: a8f598f17d46d1fd9c18373c986b2bd60cb76c45 (plain)
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();
}