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
states: rename unreachable() to is_unreachable()
[smatch.git]
/
validation
/
goto-reserved.c
blob
fbaf03e1423a687be16c1115ac9092687fbbf972
1
static void
foo
(
void
)
2
{
3
goto return
;
4
}
5
6
/*
7
* check-name: goto-reserved
8
*
9
* check-error-start
10
goto-reserved.c:3:14: error: Trying to use reserved word 'return' as identifier
11
* check-error-end
12
*/