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 / tw17184.pp
Size: Mime:
{$MODE OBJFPC} { -*- text -*- }
program Test;

type
   generic Test1<T> = class end;
   generic Test2<T> = class
    type
      Test3 = specialize Test1<T>;
   end;
   Test4 = specialize Test2<Integer>;

begin
end.