summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw10519.pp
blob: a41b9d8e857d99bb8cf1edbfe9fce8d8f1f05a28 (plain)
1
2
3
4
5
6
7
8
9
uses sysutils;

var
  cs:String;
begin
  cs:=FormatFloat('0.00000E+0000',52247.9532745);
  if (cs<>'5'+DecimalSeparator+'22480E+0004') then
    halt(1);
end.