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

pdecsub.pas, parse_parameter_dec: * allow inline specialization for array types in mode Delphi + added test git-svn-id: trunk@24207 -
15 lines
151 B
ObjectPascal
15 lines
151 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw22433;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type TWrapper<T> = record end;
|
|
|
|
procedure Z(const a: array of TWrapper<Integer>);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|