fpc/tests/webtbs/tw30299.pp
Jonas Maebe 94d7a7274b * compare floating point default parameter values bytewise instead of as
floating point values, so that NaNs can also be compared (mantis #30299)

git-svn-id: trunk@34597 -
2016-10-02 12:56:49 +00:00

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.