mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:03:48 +02:00
11 lines
148 B
ObjectPascal
11 lines
148 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. |