1 long x = -1L; 2 main()3 int main() 4 { 5 long b = (x != -1L); 6 7 if (b) 8 abort(); 9 10 exit(0); 11 } 12 13