repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
noncompile
/
scope.c
blob
7f09c27cffd840286503b695658ed1f4c9f976e9
1
extern
void
abort
(
void
);
2
extern
void
exit
(
int
);
3
static int
v
=
3
;
4
5
f
()
6
{
7
int
v
=
4
;
8
{
9
extern
int
v
;
/* { dg-error "static" } */
10
if
(
v
!=
3
)
11
abort
();
12
}
13
}
14
15
main
()
16
{
17
f
();
18
exit
(
0
);
19
}