Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / tw2226.pp
Size: Mime:
{ Source provided for Free Pascal Bug Report 2226 }
{ Submitted by "" on  2002-11-12 }
{ e-mail:  }
Program compcrash;

const mindouble: double = -5.0E324;

var
  s : string;
  correct : string;
begin
  case sizeof(extended) of
    10: correct := '                  -Inf';
    8: correct := '                  -Inf';
  end;
  str(mindouble:22,s);
  if s<>correct then
    begin
      writeln('error');
      halt(1);
    end;
end.