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

+ $ieeeerrors (command line switch -C3) to enable errors on NaN floating point constants + tests git-svn-id: trunk@15765 -
10 lines
73 B
ObjectPascal
10 lines
73 B
ObjectPascal
program test;
|
|
uses
|
|
Math;
|
|
var
|
|
D: Double;
|
|
begin
|
|
D := Infinity;
|
|
end.
|
|
|