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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-2529.c
blob
4fc5e1fe520aade40d1c52500d419047a8e8cb84
1
/*
2
bug 2529
3
*/
4
5
#include <testfwk.h>
6
7
int
i
;
8
9
int
f
(
void
)
10
{
11
i
=
1
;
12
}
13
14
void
15
testConst
(
void
)
16
{
17
f
() -
f
();
18
ASSERT
(
i
);
19
}
20