blob: a8fc6685ac4c3d0279a5905fc57f23ebdc3ae1b4 [file] [log] [blame]
Chris Lattner81ddb8a2005-02-27 19:28:30 +00001// RUN: %llvmgxx -S %s -o -
2
3#include <new>
4typedef double Ty[4];
5
6void foo(Ty *XX) {
7 new(XX) Ty();
8}