blob: 4f871d7f5b16bbe898c46a3189f9637d8a0c4b4a [file] [log] [blame]
// Core Issue #1331 (const mismatch with defaulted copy constructor)
// { dg-do compile { target c++11 } }
struct M
{
M(M&) = default;
};
struct W : public M
{
W(const W&) = default;
};