tw4778a.pp 280 B

123456789101112131415161718192021
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 4778 }
  3. { Submitted by "Phil H." on 2006-02-06 }
  4. { e-mail: [email protected] }
  5. program Test1;
  6. {$mode delphi}
  7. var
  8. AnInt : Integer;
  9. begin
  10. AnInt := 1;
  11. // WriteLn(Single(AnInt));
  12. WriteLn(Double(AnInt));
  13. end.