summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/defaulted54.C
blob: f8ddc4e47ceca1cf29c81543aab584df8aa50e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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(const W&) = default; // { dg-error "binding" }
  T t;
};

W<M> w;
W<M> w2 = w; // { dg-error "use of deleted function" }