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

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

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

type
  TTest = record
    Test: Integer;
  end;

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

begin
end.