3 // Test that the destructor for a temporary passed by value isn't run
4 // until end of full-expression, as per [class.copy]:
6 // Whenever a temporary class object is copied using a copy constructor,
7 // and this object and the copy have the same cv-unqualified type, an
8 // implementation is permitted to treat the original and the copy as two
9 // different ways of referring to the same object and not perform a copy
10 // at all, even if the class copy constructor or destructor have side
11 // effects.... In these cases, the
12 // object is destroyed at the later of times when the original and the
13 // copy would have been destroyed without the optimization.
15 // Here, the temporary would be destroyed later than the parm, so either we
16 // must suppress the optimization in this case or destroy value parms in the