fpc/tests/webtbs/tw9695.pp
Jonas Maebe 4f23f216f6 * fixed mantis #9695 introduced by the fix in r7959
git-svn-id: trunk@8494 -
2007-09-15 21:15:06 +00:00

10 lines
142 B
ObjectPascal

var
s: string;
d: Double;
begin
d := 5.9999999999999991;
Str(d:23,s);
if (pos('9',s)<>0) or (pos('5',s)<>0) then
halt(1);
end.