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.2.0 / tests / test / tthlp26a.pp
Size: Mime:
{ test that the correct type helper is used for String = ShortString }

program tthlp26a;

{$mode objfpc}
{$modeswitch typehelpers}

uses
  uthlp;

begin
  if String.TestClass <> 1 then
    Halt(1);
  Writeln('ok');
end.