fpc/tests/webtbs/tw38202.pp
2020-12-12 21:39:17 +00:00

22 lines
209 B
ObjectPascal

program Project1;
{$mode objfpc}{$H+}
uses
SysUtils;
var
D: Double;
Q: QWord;
begin
D := -1;
Q := D.Frac;
D.Frac := Q; // the sign is lost!
if D<>-1 then
halt(1);
WriteLn('ok');
end.