mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
12 lines
105 B
ObjectPascal
12 lines
105 B
ObjectPascal
type ta = array[1..1,1..100] of integer;
|
|
|
|
procedure t(a: ta);
|
|
begin
|
|
end;
|
|
|
|
var a: ta;
|
|
|
|
begin
|
|
t(a);
|
|
end.
|