mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-13 19:31:39 +01:00
12 lines
139 B
ObjectPascal
12 lines
139 B
ObjectPascal
{ %VERSION=1.1 }
|
|
type
|
|
dummyrec = record
|
|
i : int64;
|
|
end;
|
|
|
|
var
|
|
d: double;
|
|
begin
|
|
d := double(dummyrec($ffffffff80000000));
|
|
end.
|