repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
valdiag
/
tests
/
bug-3464.c
blob
4043fa9a3df51b0bbd9e95db930e01a671a81b41
1
/* bug-3464.c
2
3
Missing diagnostic on multiple storgae class specifiers if one of them was auto on a declaration at block scope.
4
*/
5
6
#ifdef TEST1
7
void
g
(
void
)
8
{
9
static
auto
int
i
;
/* ERROR */
10
auto
static int
j
;
/* ERROR */
11
}
12
#endif
13