Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
ctor5.C
blob: cc933188201772fcceedd3e1227cfa752c2efc98 [
file
] [
log
] [
blame
]
// PR C++/21645
// We were crashing because we forgot to update the type for
// the cloned argument for the cloned ctor.
struct
color
{
~
color
();
};
struct
style
{
color col
;
style
(
color
);
};
style
::
style
(
color c
)
:
col
(
c
)
{
}