Sign in
llvm
/
llvm-project
/
41a94de75caacb979070ec7a010dfe3c4e9f116f
/
.
/
clang
/
test
/
Sema
/
block-return-1.c
blob: 4b77f5a5ca68bcea4f5dd08813025808aa068355 [
file
]
// RUN: %clang_cc1 -fsyntax-only %s -verify -fblocks
int
j
;
void
foo
(
void
)
{
^
(
void
)
{
if
(
j
)
return
1
;
}();
// expected-error {{non-void block does not return a value in all control paths}}
}