fpc/tests/tbs/tb0411.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

16 lines
148 B
ObjectPascal

{ %version=1.1}
{$mode objfpc}
type
ta = array of longint;
function f : ta;
begin
setlength(result,10);
end;
begin
f[1]:=1;
end.