tw2128.pp 321 B

12345678910111213141516
  1. { %version=1.1}
  2. { Source provided for Free Pascal Bug Report 2128 }
  3. { Submitted by "Bill Rayer" on 2002-09-18 }
  4. { e-mail: [email protected] }
  5. {
  6. Excessive 64-bit literal causes the FPC compiler to crash.
  7. }
  8. var
  9. c : comp;
  10. begin
  11. c := -9223372036854775809;
  12. if c<>-9223372036854775809 then
  13. halt(1);
  14. end.