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 / webtbs / uw17950.pas
Size: Mime:
unit uw17950; 

{$mode delphi}

interface

implementation

type
  TFoo1 = class;

  TFoo1 = class
  public
    type
      TFoo2 = object
      private
        FField2: integer;
      end;
    public
      function GetFoo2: TFoo2;
  end;

function TFoo1.GetFoo2: TFoo2;
begin
  result.FField2 := 5;
end;

end.