fpc/tests/webtbs/tw10210.pp
peter 07880add06 * remove svn:executable property
git-svn-id: trunk@11403 -
2008-07-18 21:28:51 +00:00

17 lines
178 B
ObjectPascal

{ %norun }
unit tw10210;
{$mode objfpc}
interface
type
generic TSomeList<TElem> = class
end;
TSomeClassList = specialize TSomeList<integer>;
implementation
begin
end.