aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/block-syntax-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/block-syntax-error.c')
-rw-r--r--test/Sema/block-syntax-error.c7
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}}
-}