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

program tthlp26c;

{$mode objfpc}{$H+}
{$modeswitch unicodestrings}
{$modeswitch typehelpers}

uses
  uthlp;

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