mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
16 lines
167 B
ObjectPascal
16 lines
167 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw30498;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
|
|
procedure Test(const AItems: TArray<string>);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
Test(['foo', 'bar']);
|
|
end.
|