mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 09:39:25 +02:00
15 lines
187 B
ObjectPascal
15 lines
187 B
ObjectPascal
{$mode delphi}
|
|
|
|
procedure error1(a, b: array of string);
|
|
begin
|
|
end;
|
|
|
|
procedure error2(a, b: array of byte);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
error1(['abc'], ['xyz']);
|
|
error2([1,2,3,4], [2,1,0]);
|
|
end.
|