fpc/tests/webtbs/tw4533.pp
Jonas Maebe 0cfea2fac0 + added
git-svn-id: trunk@1889 -
2005-12-06 19:47:10 +00:00

16 lines
172 B
ObjectPascal

{$mode objfpc}
{$openstrings+}
procedure t(out s: shortstring);
begin
writeln(high(s));
if high(s) <> 4 then
halt(1);
end;
var
s: string[4];
begin
t(s);
end.