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

floating point values, so that NaNs can also be compared (mantis #30299) git-svn-id: trunk@34597 -
14 lines
138 B
ObjectPascal
14 lines
138 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode objfpc}
|
|
uses math;
|
|
|
|
procedure test(s: single = NaN); forward;
|
|
|
|
procedure test(s: single = NaN);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|