URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [ctor5.C] - Rev 841
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