* the index of the generic type parameter is not the same index of the paras list

+ added test
This commit is contained in:
Sven/Sarah Barth 2022-04-21 21:57:36 +02:00
parent 66bac7c415
commit a5f3040da5
2 changed files with 22 additions and 1 deletions

View File

@ -972,7 +972,7 @@ uses
{ find the generic param name in the generic def parameters }
j:=target_proc.genericdef.genericparas.findindexof(paravar.vardef.typesym.name);
target_def:=tparavarsym(target_proc.paras[j]).vardef;
target_def:=ttypesym(target_proc.genericparas[j]).typedef;
caller_def:=caller_proc_para.vardef;
if not assigned(caller_def.typesym) then

View File

@ -0,0 +1,21 @@
{ %NORUN }
program timpfuncspez36;
{$mode objfpc}
{$modeswitch implicitfunctionspecialization}
type
generic TTestFunc<T> = procedure(aArg1: String; aArg2: T);
generic procedure DoTest<T>(aArg: specialize TTestFunc<T>);
begin
end;
procedure TestFunc(aArg1: String; aArg2: LongInt);
begin
end;
begin
DoTest(@TestFunc);
end.