fpc/tests/webtbs/tw24071.pp
svenbarth 2c792659ce Fix for Mantis #24071.
pdecl.pas, types_dec:
  * extract the determination of the nested generic def to a new local function "determine_generic_def"
  * use "determine_generic_def" to determine the generic def in case of a forward def and pass this and the generic type list to "object_dec"

+ added test

git-svn-id: trunk@24572 -
2013-05-24 15:27:27 +00:00

25 lines
248 B
ObjectPascal

{ %NORUN }
program tw24071;
{$mode delphi}
type
TA<T> = class
end;
TB<T> = class
public
type
TC = class;
TC = class(TA<TC>)
private
procedure Foo; virtual; abstract;
end;
end;
var
X: TB<Integer>;
begin
end.