mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +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
243 B
ObjectPascal
17 lines
243 B
ObjectPascal
{%FAIL}
|
|
{$mode objfpc}
|
|
{$modeswitch implicitfunctionspecialization}
|
|
{
|
|
Parameter count must match in order for specialization to be considered
|
|
}
|
|
|
|
program timpfuncspez26;
|
|
|
|
|
|
generic procedure Test<T>(aT: T);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
Test(1, 1);
|
|
end. |