struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-1406131.c
blob0e1651c38de4e7c27973957879696609417bf727
1 /* bug-1406131.c
3 always false while-loop
4 */
5 #include <testfwk.h>
7 void
8 testwhile(void)
12 while (0);
14 while (0)
17 for (; 0; )