fpc/tests/test/timpfuncspez10.pp
Sven/Sarah Barth 90844c2027 * fix #35261: apply slightly adjusted changes by Ryan Joseph to implement support for implicit generic function specializations
The main adjustments were as follows:
  - fixing coding style and identation
  - fixing some typos
  - using a better name for the property in tcallcandidates which holds the symbols created for anonymous parameter values
2022-04-20 18:59:31 +02:00

22 lines
477 B
ObjectPascal

{$mode objfpc}
{$modeswitch implicitfunctionspecialization}
{
Test generic parameter order
}
program timpfuncspez10;
uses
typinfo;
generic function DoThis<S, T>(p1: T; p2: S; t1, t2: TTypeKind): boolean;
begin
result := (GetTypeKind(S) = t1) and (GetTypeKind(T) = t2);
writeln('S:',GetTypeKind(S), ' T:',GetTypeKind(T), ' = ', result);
end;
begin
if not DoThis(1, 'a', tkChar, tkInteger) then
Halt(-1);
if not DoThis('a', 1, tkInteger, tkChar) then
Halt(-1);
end.