Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
eval
/
undecl-no-indent.c
blob: 4aadf3d99235c9f99e04d7d072fd382ad1a4808d [
file
] [
log
] [
blame
]
inline
void
fun
(
void
)
{
undecl
();
}
void
foo
(
void
);
void
foo
(
void
)
{
fun
();
fun
();
}
/*
* check-name: undecl-no-indent
*
* check-error-start
eval/undecl-no-indent.c:3:9: error: undefined identifier 'undecl'
* check-error-end
*/