diff options
Diffstat (limited to 'clang/test/Sema/block-return.c')
-rw-r--r-- | clang/test/Sema/block-return.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/block-return.c b/clang/test/Sema/block-return.c index 293967fea17..70fb3e104e9 100644 --- a/clang/test/Sema/block-return.c +++ b/clang/test/Sema/block-return.c @@ -9,14 +9,14 @@ CL foo() { CL X = ^{ if (2) return; - return 1; // expected-error {{void block should not return a value}} + return 1; // expected-error {{return type 'int' must match previous return type 'void' when block literal has unspecified explicit return type}} }; int (^Y) (void) = ^{ if (3) return 1; else - return; // expected-error {{non-void block should return a value}} + return; // expected-error {{return type 'void' must match previous return type 'int' when block literal has unspecified explicit return type}} }; char *(^Z)(void) = ^{ |