1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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) { }