mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
18 lines
155 B
ObjectPascal
18 lines
155 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode delphi}
|
|
{$p-}
|
|
|
|
var
|
|
s: string[4];
|
|
|
|
procedure test(var s: shortstring);
|
|
begin
|
|
s:='12345678';
|
|
end;
|
|
|
|
begin
|
|
test(s);
|
|
writeln(s);
|
|
end.
|