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

14 lines
278 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 2912 }
{ Submitted by "Bill Pearce" on 2004-01-19 }
{ e-mail: pearceg@post.queensu.ca }
procedure SetRowCount(n,m : integer);
var
tmp : array of array of string;
begin
SetLength(tmp, n, m);
end;
begin
SetRowCount(10,2);
end.