summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/defaulted55.C
blob: 04cfc17200060f56c3afd198efc2592c8b1c9173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Core Issue #1331 (const mismatch with defaulted copy constructor)
// { dg-do compile { target c++11 } }

struct M
{
  M();
  M(M&);
};

template<typename T> struct W
{
  W();
  W(W&) = default;
  // T1 and T2 may have differing ref-qualifiers (copy assign op).
  constexpr W& operator=(const W&) && = default; // { dg-error "defaulted" "" { target c++11_down } }
  T t;
};

W<M> w;