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 / thlp48.pp
Size: Mime:
{ %fail }
{ %opt=-vw -Sew }

program thelper;

{$mode objfpc}

type
  TTest = class;

  TTestHelper = class helper for TTest
    procedure Test;
  end;

  TTest = class
    Test: LongInt;
  end;

procedure TTestHelper.Test;
begin
end;

begin
end.