]> granicus.if.org Git - clang/commitdiff
add a silly testcase
authorChris Lattner <sabre@nondot.org>
Sat, 22 Nov 2008 19:57:03 +0000 (19:57 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 22 Nov 2008 19:57:03 +0000 (19:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59877 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/exprs.c

index 66806dba65837e372531d0eecfd2c424744fb6fa..db252b8d9d50cc46a4e388edd18dfbf931466e64 100644 (file)
@@ -33,3 +33,8 @@ void test6() {
   int X;
   X();  // expected-error {{called object type 'int' is not a function or function pointer}}
 }
+
+void test7(int *P, _Complex float Gamma) {
+   P = (P-42) + Gamma*4;  // expected-error {{invalid operands to binary expression ('int *' and '_Complex float')}}
+}
+