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 / webtbs / tw17986.pp
Size: Mime:
program tw17986;

{$mode delphi}

type
  TFoo1 = class
  public
    type
      TFoo2 = class
        procedure Proc(value: TFoo1); // was error: Type "TFoo1" is not completely defined
      end;
  end;

procedure TFoo1.TFoo2.Proc(value: TFoo1);
begin
end;

begin
end.