Fix <rdar://problem/6418623> Bogus block type compatibility warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60842 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/block-call.c b/test/Sema/block-call.c
index 66bf725..c52f0ed 100644
--- a/test/Sema/block-call.c
+++ b/test/Sema/block-call.c
@@ -24,7 +24,7 @@
int * (^IPCC2) () = IPCC; // expected-warning {{incompatible block pointer types initializing 'int *const (^)()', expected 'int *(^)()'}}
- int (^IPCC3) (const int) = PFR; // expected-warning {{incompatible block pointer types initializing 'int (^)(int)', expected 'int (^)(int const)'}}
+ int (^IPCC3) (const int) = PFR;
int (^IPCC4) (int, char (^CArg) (double));