From 60d0c2c1c2eb81fe389a912f13762c8f18eb72d3 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Sun, 31 May 2009 21:07:58 +0000 Subject: Support for complex types. llvm-svn: 72675 --- clang/test/CodeGenCXX/new.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang/test/CodeGenCXX/new.cpp') diff --git a/clang/test/CodeGenCXX/new.cpp b/clang/test/CodeGenCXX/new.cpp index a1786e81817..dde7bfe9ee5 100644 --- a/clang/test/CodeGenCXX/new.cpp +++ b/clang/test/CodeGenCXX/new.cpp @@ -13,4 +13,6 @@ void t2(int* a) { void t3() { int *a = new int(10); + _Complex int* b = new _Complex int(10i); + } -- cgit v1.2.3