aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/block-call.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/block-call.c')
-rw-r--r--test/Sema/block-call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/block-call.c b/test/Sema/block-call.c
index 27e4cfc6d46b..2aa1422dd915 100644
--- a/test/Sema/block-call.c
+++ b/test/Sema/block-call.c
@@ -13,7 +13,7 @@ int main() {
int (^IFP) () = PFR; // OK
- const int (^CIC) () = IFP; // expected-error {{incompatible block pointer types initializing 'int const (^)()' with an expression of type 'int (^)()'}}
+ const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int (^)()'}}
const int (^CICC) () = CIC;