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 / uw31431.pp
Size: Mime:
unit uw31431;

{$mode objfpc}

interface

type
  TFoo = class
  private
    type
      TID = Integer;
  protected
    type
      TID2 = Integer;
  end;

  generic TBar<T> = class
  private
    FID: TFoo.TID;
    FID2: TFoo.TID2;
  end;

implementation

end.