struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-499644.c
blobf0d18fa3b0491957cc073b307d37ad7d582b0826
1 /* Floats
2 */
3 #include <testfwk.h>
5 const float a = 0.0;
7 #if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
8 float f(void)
10 return a * 5;
12 #endif
14 void testBug(void)