1 /*
2  * bug3188899.c
3  */
4 
5 #include <testfwk.h>
6 
7 /* bug 3188899
8    ?ASlink-Warning-Undefined Global '_s1' referenced by module
9    _s1 should be _testBug3188899_s1_1_1 */
testBug3188899(void)10 void * testBug3188899 (void)
11 {
12   static char s1;
13   static void * const __code s2 = &s1;
14   return s2;
15 }
16