make this harder



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40994 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/complex.c b/test/CodeGen/complex.c
index 201ff74..6c081db 100644
--- a/test/CodeGen/complex.c
+++ b/test/CodeGen/complex.c
@@ -7,3 +7,13 @@
 
   return a * b != b * a;
 }
+
+_Complex double bar(int);
+void test(_Complex double*);
+
+void test2(int c) {
+  _Complex double X;
+  X = bar(1);
+  test(&X);
+}
+