repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tccgen.c: Fix memory leak involving asm_label.
[tinycc.git]
/
tests
/
tests2
/
63_local_enumerator_redefinition.c
blob
dd4d8e055cf1794b8d9024690a160d0986df0330
1
enum
{
2
FOO
,
3
BAR
4
};
5
6
int
main
(
void
)
7
{
8
enum
{
9
FOO
=
2
,
10
BAR
11
};
12
13
return
BAR
-
FOO
;
14
}