struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-2746.c
blob88e125a015f470c50b5feea2012afe3a87140dc8
1 /*
2 bug-2746.c
3 */
5 #include <testfwk.h>
7 #include <stdint.h>
9 struct object_t
11 uint8_t field1;
12 uint8_t field2;
15 void testBug(void)
17 #ifndef __SDCC // Enable when the bug gets fixed!
18 (intptr_t)(&(((struct object_t*)0)->field2));
19 #endif