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