struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug3188899.c
blobe9fd43913cbb49f68e63a5808dfbea09b6e6bf99
1 /*
2 * bug3188899.c
3 */
5 #include <testfwk.h>
7 /* bug 3188899
8 ?ASlink-Warning-Undefined Global '_s1' referenced by module
9 _s1 should be _testBug3188899_s1_1_1 */
10 void * testBug3188899 (void)
12 static char s1;
13 static void * const __code s2 = &s1;
14 return s2;