fpc/tests/webtbs/tw22433.pp
svenbarth 8353d53b69 Fix for Mantis #22433.
pdecsub.pas, parse_parameter_dec:
  * allow inline specialization for array types in mode Delphi

+ added test

git-svn-id: trunk@24207 -
2013-04-08 14:51:42 +00:00

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.