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

17 lines
321 B
ObjectPascal

{%FAIL}
{$mode objfpc}
{$modeswitch implicitfunctionspecialization}
{
Test default parameters
NOTE: currently default values are not considered for specialization so the test should fail
}
program timpfuncspez16;
generic procedure DoThis<T>(a: integer; b: integer = 0; c: T = 0);
begin
end;
begin
DoThis(1);
end.