blob: f8ddc4e47ceca1cf29c81543aab584df8aa50e53 [file] [log] [blame]
// 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" }