Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
f0e6938bffe0e21cde6e60ff63ed8877d4d04e26
/
.
/
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
*/