123456789101112131415161718192021 |
- { %fail }
- { Source provided for Free Pascal Bug Report 4778 }
- { Submitted by "Phil H." on 2006-02-06 }
- { e-mail: [email protected] }
- program Test1;
- {$mode delphi}
- var
- AnInt : Integer;
-
- begin
- AnInt := 1;
-
- // WriteLn(Single(AnInt));
- WriteLn(Double(AnInt));
-
- end.
|