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 / test / tthlp1.pp
Size: Mime:
{ %NORUN }

{ this checks that the basic type helper syntax is parsed correctly }

program tthlp1;

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

type
  TTest = type helper for LongInt
    procedure Test;
  end;

procedure TTest.Test;
begin

end;

begin

end.