fpc/tests/tbs/tb0534.pp
Jonas Maebe bcfed2bc74 * test for wrong warning when accessing length of unwritten
open array out-parameters

git-svn-id: trunk@6906 -
2007-03-17 22:08:31 +00:00

12 lines
114 B
ObjectPascal

{ %opt=-Sew }
{$mode objfpc}
procedure test(out l: array of char);
begin
writeln(length(l));
end;
begin
end.