blob: 4f871d7f5b16bbe898c46a3189f9637d8a0c4b4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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;
};
|