struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20001011-1.c
blob506a40647d5e729f545fe193d190fe958d71eade
1 /*
2 20001011-1.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_c99
9 #endif
11 #include <string.h>
13 int foo(const char *a)
15 return strcmp(a, "testTortureExecute");
18 void
19 testTortureExecute (void)
21 if(foo(__func__))
22 ASSERT (0);
23 return;