repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel-printf: add printf format %pra for struct range
[smatch.git]
/
validation
/
empty-assign.c
blob
d1c3884f71e8a34bcf92e8fec82d610086b70d68
1
static int
foo
(
int
a
)
2
{
3
a
= ;
// KO
4
return
a
;
5
}
6
7
/*
8
* check-name: empty-assign
9
*
10
* check-error-start
11
empty-assign.c:3:11: error: expression expected before ';'
12
* check-error-end
13
*/