mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
16 lines
188 B
ObjectPascal
16 lines
188 B
ObjectPascal
uses
|
|
math;
|
|
var
|
|
c : currency;
|
|
begin
|
|
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
|
c:=1.5625;
|
|
c:=RoundTo(c,-1);
|
|
if c<>1.6 then
|
|
halt(1);
|
|
writeln('ok');
|
|
{$endif FPC_HAS_TYPE_EXTENDED}
|
|
end.
|
|
|
|
|