struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20040706-1.c
blob2f93ec14e905a6f98da53d3f2830f9c73a06620d
1 /*
2 20040706-1.c from the execute part of the gcc torture suite.
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_c99
9 #endif
11 void
12 testTortureExecute (void)
14 int i;
15 for (i = 0; i < 10; i++)
16 continue;
17 if (i < 10)
18 ASSERT (0);
19 return;