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

{$mode objfpc}{$H+}

interface


type
  generic TGClass<T> = class
    procedure P;
  end;

implementation

uses
  gvector;

procedure TGClass.P;
type
  TMyVector = specialize TVector<T>;
var
  MyVector: TMyVector;
begin
end;

end.