mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 19:53:38 +02:00
12 lines
114 B
ObjectPascal
12 lines
114 B
ObjectPascal
{ %opt=-Sew }
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure test(out l: array of char);
|
|
begin
|
|
writeln(length(l));
|
|
end;
|
|
|
|
begin
|
|
end.
|