mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 19:09:25 +02: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.
|