mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
12 lines
179 B
ObjectPascal
12 lines
179 B
ObjectPascal
procedure myfunction(var t : array of char);
|
|
begin
|
|
writeln(sizeof(t)); { should be 51 }
|
|
end;
|
|
|
|
var
|
|
mycharstring : array[0..50] of char;
|
|
|
|
begin
|
|
myfunction(mycharstring);
|
|
end.
|