1 void *foo[]={(void *)&("X"[0])}; 2 3 main () 4 { 5 if (((char*)foo[0])[0] != 'X') 6 abort (); 7 exit (0); 8 } 9