mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
22 lines
209 B
ObjectPascal
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.
|