aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/block-syntax-error.c
blob: b046f46da48434c582402ccf7b8cf44a441e8762 (plain)
1
2
3
4
5
6
7
// 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}}
}