URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [init/] [ctor5.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// 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)
{
}
Go to most recent revision | Compare with Previous | Blame | View Log