mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 05:30:47 +01:00
12 lines
149 B
ObjectPascal
12 lines
149 B
ObjectPascal
|
|
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.
|