Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
empty-assign.c
blob: d1c3884f71e8a34bcf92e8fec82d610086b70d68 [
file
] [
log
] [
blame
]
static
int
foo
(
int
a
)
{
a
=
;
// KO
return
a
;
}
/*
* check-name: empty-assign
*
* check-error-start
empty-assign.c:3:11: error: expression expected before ';'
* check-error-end
*/