mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 00:47:52 +02:00
* the index of the generic type parameter is not the same index of the paras list
+ added test
This commit is contained in:
parent
66bac7c415
commit
a5f3040da5
@ -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
|
||||
|
21
tests/test/timpfuncspez36.pp
Normal file
21
tests/test/timpfuncspez36.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user