blob: 5f6c204a471779c9e9927464ccec4be1f8799244 [file] [log] [blame]
// RUN: clang %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}}
}