struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-961122-2.c
blobbb70c2290604ea98e10d03040e2aed6b18d29a3f
1 /*
2 961122-2.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 int
12 f (int a)
14 return ((a >= 0 && a <= 10) && ! (a >= 0));
17 void
18 testTortureExecute (void)
20 if (f (0))
21 ASSERT (0);
22 return;