mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

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 -
25 lines
248 B
ObjectPascal
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.
|