fpc/tests/tbs/tb0566.pp
Jonas Maebe 6399bcd4e3 * improve precision of values specified with a decimal point and an exponent
(based on report/hints by Dariusz Mazur)

git-svn-id: trunk@14533 -
2010-01-03 15:56:06 +00:00

10 lines
105 B
ObjectPascal

var
d1,d2,d3 : extended;
err: longint;
begin
d1:=105;
d2:=1.05e2;
if (d1<>d2) then
halt(1);
end.