fpc/tests/test/timpfuncspez27.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

16 lines
230 B
ObjectPascal

{%FAIL}
{$mode objfpc}
{$modeswitch implicitfunctionspecialization}
{
All generic parameters must be used in the paramter list
}
program timpfuncspez27;
generic procedure Test<T>(aT: Integer);
begin
end;
begin
Test(1);
end.