1 /* e_12_8.c: Out of range of integer pp-token in #if expression. */ 2 3 /* 12.8: Preprocessing number perhaps out of range of unsigned long. */ 4 #if 123456789012345678901 5 #endif 6 main(void)7 main( void) 8 { 9 return 0; 10 } 11 12