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 / tchlp9.pp
Size: Mime:
{ %FAIL }

{ inside a helper's declaration the methods/fields of the extended class can't
  be accessed }
program tchlp9;

{$ifdef fpc}
  {$mode delphi}
{$endif}

type
  TTest = class
    Test: Integer;
    function GetTest: Integer;
  end;

  TTestHelper = class helper for TTest
    property AccessTest: Integer read Test;
  end;

begin
end.