1 // RUN: %llvmgxx -S %s -o - 2 3 #include <new> 4 typedef double Ty[4]; 5 foo(Ty * XX)6 void foo(Ty *XX) { 7 new(XX) Ty(); 8 } 9