mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-14 10:51:29 +01:00
14 lines
125 B
ObjectPascal
14 lines
125 B
ObjectPascal
{ %fail }
|
|
{ %opt=-Sew }
|
|
|
|
var
|
|
a : array[0..32] of byte;
|
|
|
|
procedure p(const a:array of byte);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
p(a);
|
|
end.
|