mips.c (mips16_copy_fpr_return_value): New function, split out from...
[official-gcc.git] / gcc / testsuite / g++.dg / init / new10.C
blobe19629bc00bdb463ce8ea394c620817d89a01d76
1 // PR c++/14452
2 // We got confused trying to preevaluate the new-initializer.
4 struct S {}; 
5 void foo (bool b) 
6
7   new S(b ? S() : S()); 
8