Support for complex types.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72675 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/new.cpp b/test/CodeGenCXX/new.cpp
index a1786e8..dde7bfe 100644
--- a/test/CodeGenCXX/new.cpp
+++ b/test/CodeGenCXX/new.cpp
@@ -13,4 +13,6 @@
 
 void t3() {
   int *a = new int(10);
+  _Complex int* b = new _Complex int(10i);
+  
 }