mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
14 lines
144 B
ObjectPascal
14 lines
144 B
ObjectPascal
{ %fail }
|
|
{ %opt=-Sew -vw -Oonodeadvalues}
|
|
|
|
var
|
|
a : array[0..32] of byte;
|
|
|
|
procedure p(const a:array of byte);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
p(a);
|
|
end.
|