diff options
author | Mike Stump <mrs@apple.com> | 2009-02-08 07:59:54 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-02-08 07:59:54 +0000 |
commit | f876bc93885d9a54463c6db61d944fccd5ab9bc9 (patch) | |
tree | 3e2656fba9f1cdbdc543eabfec781b3416aa766f /clang/test/Sema | |
parent | e5e95f7717bd25964e042b1b5ffae33fcf6f8974 (diff) | |
download | bcm5719-llvm-f876bc93885d9a54463c6db61d944fccd5ab9bc9.tar.gz bcm5719-llvm-f876bc93885d9a54463c6db61d944fccd5ab9bc9.zip |
Fixup expected errors.
llvm-svn: 64074
Diffstat (limited to 'clang/test/Sema')
-rw-r--r-- | clang/test/Sema/block-misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/block-misc.c b/clang/test/Sema/block-misc.c index 8349985ceb5..c3de7b7e9be 100644 --- a/clang/test/Sema/block-misc.c +++ b/clang/test/Sema/block-misc.c @@ -42,7 +42,7 @@ int test2(double (^S)()) { } int^ x; // expected-error {{block pointer to non-function type is invalid}} -int^^ x1; // expected-error {{block pointer to non-function type is invalid}} +int^^ x1; // expected-error {{block pointer to non-function type is invalid}} expected-error {{block pointer to non-function type is invalid}} int test3() { char *^ y; // expected-error {{block pointer to non-function type is invalid}} |