Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted59.C
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
;
};