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 / tw12249.pp
Size: Mime:
{ %norun }

unit tw12249;

{$mode objfpc}{$H+}

interface

type

  { TG2 }

  generic TG2<T> = class
  public
    destructor Destroy; override;
  end;

implementation

{ TG2 }

destructor TG2.Destroy;
begin
  inherited Destroy;
end;

procedure P;
type 
  T = specialize TG2<Integer>;
begin
end;

end.