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

{$mode delphi}{$H+}

type
  IInt = interface
    procedure Test;
  end;

  TParent = class
  private
    type
      TChild = class(TInterfacedObject, IInt)
      public
        procedure Test;
      end;
  end;

procedure TParent.TChild.Test;
begin
end;


begin
end.