mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +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
19 lines
322 B
ObjectPascal
19 lines
322 B
ObjectPascal
{%NORUN}
|
|
{$mode objfpc}
|
|
{$modeswitch implicitfunctionspecialization}
|
|
{
|
|
Test multi-dimensional array specializations
|
|
}
|
|
|
|
program timpfuncspez23;
|
|
|
|
type
|
|
generic TArray<T> = array of T;
|
|
|
|
generic procedure DoThis<T>(param: specialize TArray<specialize TArray<T>>);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
DoThis([[1,2,3],[2,3,4],[3,4,5]]);
|
|
end. |