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

unit tb0266a;

{$mode objfpc}{$H+}

interface

type
  TTest1 = class
    fTest: String;
  end;

  TTest2 = class
  private
    fTest: TTest1;
  public
    property Test: String read fTest.fTest;
  end;

implementation

end.