fpc/tests/webtbf/tw14929b.pp
2009-10-29 15:52:14 +00:00

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.