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