struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-2529.c
blob4fc5e1fe520aade40d1c52500d419047a8e8cb84
1 /*
2 bug 2529
3 */
5 #include <testfwk.h>
7 int i;
9 int f(void)
11 i = 1;
14 void
15 testConst(void)
17 f() - f();
18 ASSERT(i);