fpc/tests/webtbs/tw26123.pp
svenbarth 49a9f4c1ea Fix for Mantis #26123.
pdecobj.pas, object_dec:
  * Always check for genericdef and genericlist and not genericdef and ifnot then genericlist.

+ added test

git-svn-id: trunk@27877 -
2014-06-06 15:19:45 +00:00

26 lines
462 B
ObjectPascal

{ %NORUN }
program tw26123;
{$mode objfpc}
type
generic TNode<data_type> = class // anything can go in this class
end;
generic TLinkedList<data_type> = class
type
specialized_TNode = specialize TNode<data_type>;
public
node : specialized_TNode;
end;
generic TExtendedLinkedList<data_type> = class (specialize TLinkedList<data_type>)
public
last_node : specialized_TNode;
end;
begin
end.