struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug2805333.c
blobcbdee0761f1a23f53585ee07c4c83834d4040ffd
1 /*
2 bug2805333.c
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_sdcc99
9 #endif
11 #include <stdbool.h>
13 void g(char c)
18 bool b;
20 void test_bug(void)
22 g(!b); /* Causes SDCC 2.9.0 to segfault.. */