mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
17 lines
204 B
ObjectPascal
17 lines
204 B
ObjectPascal
program tw37272a;
|
|
|
|
{ note: there is a tw37272b in webtbf }
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TA1 = array of integer;
|
|
|
|
procedure Test(A: integer; const B: TA1 = []);
|
|
begin end;
|
|
|
|
begin
|
|
Test(1, []);
|
|
Test(1);
|
|
end.
|