fpc/tests/webtbs/tw28674.pp
svenbarth d4635f10df Remaining fix for Mantis #28674.
ptype.pas, resolve_forward_types:
  * in case of the def of the forward being the same as the genericdef of the def the forwarddef belongs to the typesym needs to be changed to the one of the specialization

tests/webtbs/tw28674.pp:
  * adjusted text

git-svn-id: trunk@31987 -
2015-10-09 13:18:35 +00:00

18 lines
166 B
ObjectPascal

{ %NORUN }
program tw28674;
{$mode objfpc}
type
generic node<T> = object
data: T;
link: ^node;
end;
tintnode = specialize node<int32>;
begin
end.