mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
18 lines
363 B
ObjectPascal
18 lines
363 B
ObjectPascal
{ Old file: tbs0146.pp }
|
|
{ no sizeof() for var arrays and the size is pushed incorrect OK 0.99.7 (PFV) }
|
|
|
|
|
|
procedure myfunction(var t : array of char);
|
|
begin
|
|
writeln(sizeof(t)); { should be 51 }
|
|
if sizeof(t)<>51 then halt(1);
|
|
end;
|
|
|
|
var
|
|
mycharstring : array[0..50] of char;
|
|
|
|
begin
|
|
myfunction(mycharstring);
|
|
if sizeof(mycharstring)<>51 then halt(1);
|
|
end.
|