blob: d5fbc6f70c5dda288ff42a66933c842dcb0173d8 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s -verify -fblocks
Mike Stump56925862009-07-28 22:04:01 +00002
3void foo() {
4 ^ (void) __attribute__((noreturn)) { }(); // expected-error {{block declared 'noreturn' should not return}}
5}