blob: a8fc6685ac4c3d0279a5905fc57f23ebdc3ae1b4 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o -
#include <new>
typedef double Ty[4];
void foo(Ty *XX) {
new(XX) Ty();
}