repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2002-05-10 David S. Miller <davem@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
scope-2.c
blob
c9a4775f6f56454e5ee553eb95a6fead5ecde1ed
1
static int
v
=
3
;
2
3
f
()
4
{
5
int
v
=
4
;
6
{
7
extern
int
v
;
8
if
(
v
!=
3
)
9
abort
();
10
}
11
}
12
13
main
()
14
{
15
f
();
16
exit
(
0
);
17
}