fpc/tests/webtbs/tw24953.pp
svenbarth d03507671d Fix for Mantis #24953.
pgenutil.pas, parse_generic_parameters:
  * set the typesym of the newly created def so that inline specializations in pexpr.pas, sub_expr can check it correctly

git-svn-id: trunk@25410 -
2013-09-04 12:56:08 +00:00

25 lines
478 B
ObjectPascal

unit tw24953;
interface
{$mode delphi}
Type
TPoolablePool<t:class,constructor> = class
factory : TObject;
constructor create;
end;
TPoolableFactory<t>= class
end;
implementation
{ TPoolablePool<t> }
constructor TPoolablePool<t>.create; // last line visible in -va output before crash
begin
factory:=TPoolableFactory<t>.create;
end;
end.