struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / qct / 0006-whilestmt.c
blobbc2068ed0ce603c8d90a3358334ef025020e5796
2 int
3 main()
5 int x;
7 x = 50;
8 while (x)
9 x = x - 1;
10 return x;