diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-18 20:12:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-18 20:12:56 +0000 |
commit | ede6e470c0cd6decd5151a32b77220aa43f70b4f (patch) | |
tree | 68b53dd98dc647db5b8fcbb8703da81d29843307 /test/Sema/block-syntax-error.c | |
parent | bcfce66584e47bb07f49a86b7cb39b4fdd269a5a (diff) |
merge two tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/block-syntax-error.c')
-rw-r--r-- | test/Sema/block-syntax-error.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/Sema/block-syntax-error.c b/test/Sema/block-syntax-error.c deleted file mode 100644 index b046f46da4..0000000000 --- a/test/Sema/block-syntax-error.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: clang-cc %s -fsyntax-only -verify -fblocks - -void (^noop)(void); - -void somefunction() { - noop = ^noop; // expected-error {{type name requires a specifier or qualifier}} expected-error {{expected expression}} -} |