Sign in
llvm
/
llvm-project
/
ae42196bc493ffe877a7e3dff8be32035dea4d07
/
.
/
clang
/
test
/
Sema
/
block-return-1.c
blob: 4b77f5a5ca68bcea4f5dd08813025808aa068355 [
file
] [
log
] [
blame
]
// 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}}
}