blob: a8fc6685ac4c3d0279a5905fc57f23ebdc3ae1b4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o -
2
3#include <new>
4typedef double Ty[4];
5
6void foo(Ty *XX) {
7 new(XX) Ty();
8}