summaryrefslogtreecommitdiff
path: root/tests/tbs/tb0420.pp
blob: 10f477fd8432a637a8e41f958e9cd25615c83826 (plain)
1
2
3
4
5
6
7
8
9
10
11

procedure array_test(b: integer; parr: array of word; c: integer);cdecl;
begin
end;


var
 a: array[1..12] of word;
begin
  array_test(0,a,0);
end.