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

{$mode objfpc}{$H+}

type
  TFixedString15 = array[1..15] of char;
  generic TLinkedList<T> = class
    type
      PNode = ^TNode;
      TNode = record
      key: T;
      value : dword;
      next : PNode;
    end;
    var
      first: PNode;
  end;

var
  MyLinkedList: specialize TLinkedList<TFixedString15>;

begin
end.