GCC supports the complex conjugate operator (an extension) on complex int 
as well as complex float. rdar://6097730


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54080 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/complex-int.c b/test/Sema/complex-int.c
index d7244d1..1e58b53 100644
--- a/test/Sema/complex-int.c
+++ b/test/Sema/complex-int.c
@@ -41,3 +41,12 @@
 TestPairs(7); TestPairs(8);
 }
 
+// rdar://6097730
+void test3(_Complex int *x) {
+  *x = ~*x;
+}		
+
+void test4(_Complex float *x) {
+  *x = ~*x;
+}		
+