mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00

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
17 lines
305 B
ObjectPascal
17 lines
305 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 timpfuncspez17;
|
|
|
|
generic procedure DoThis<T>(a: integer; b: T = 0);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
DoThis(1);
|
|
end. |