tw3626.pp 438 B

123456789101112131415161718192021222324
  1. { %skipcpu=x86_64,powerpc64 }
  2. { %fail }
  3. { Source provided for Free Pascal Bug Report 3626 }
  4. { Submitted by "Marc Geldon" on 2005-02-02 }
  5. { e-mail: [email protected] }
  6. program project1;
  7. {$H+}
  8. uses
  9. SysUtils
  10. { add your units here };
  11. var
  12. i: Integer;
  13. begin
  14. { This should give an range check error at compile time for
  15. 32bit systems }
  16. for i := 0 to 90000000000000000 do
  17. begin
  18. writeln(inttostr(i));
  19. end;
  20. end.