tw2128.pp 331 B

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