struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-448984.c
blob5ec36049c3512f2e22a5b90f60c0f854649e648f
1 /* bug-448984.c
2 */
3 #include <testfwk.h>
5 void
6 testRshRem(void)
8 volatile int rem, quot;
10 quot = 4;
11 rem = 5000;
13 rem = rem - (quot*1024);
15 ASSERT(rem == 904);