mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 08:13:42 +02:00
14 lines
138 B
ObjectPascal
14 lines
138 B
ObjectPascal
{ %version=1.1 }
|
|
{$mode objfpc}
|
|
procedure p(a : array of const);
|
|
|
|
begin
|
|
end;
|
|
|
|
var
|
|
a : array[0..25] of char;
|
|
|
|
begin
|
|
p([a]);
|
|
end.
|