mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:28:00 +02:00

* never throw range/overflow check errors for floats in delphi mode, resolves #7584 git-svn-id: trunk@10940 -
13 lines
93 B
ObjectPascal
13 lines
93 B
ObjectPascal
program bug;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
math;
|
|
|
|
{$Q+}
|
|
{$R+}
|
|
|
|
begin
|
|
Writeln(Math.Infinity);
|
|
end. |