fpc/tests/webtbs/tw7998.pp
peter 5fdbf74be8 * compiles now
git-svn-id: trunk@8839 -
2007-10-18 00:27:06 +00:00

24 lines
345 B
ObjectPascal

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.