fpc/tests/webtbs/tw35886.pp
Jonas Maebe 1da43f67d4 * (non-ancient) Delphi versions that accept explicit ordinal -> floating
point typecasts behave the same as FPC (convert the value) rather than
    as Turbo Pascal (reinterpret the bit pattern) (mantis #35886)

git-svn-id: trunk@42507 -
2019-07-28 11:14:54 +00:00

18 lines
170 B
ObjectPascal

program project1;
{$mode delphi}
uses
SysUtils;
var
f: Double;
n: Int64;
begin
n := 9876543210;
f := Double(n);
if f<>9876543210.0 then
halt(1);
end.